Searched refs:wait (Results 1 - 25 of 814) sorted by relevance

1234567891011>>

/freebsd-13-stable/sys/compat/linuxkpi/common/include/linux/
H A Dsmp.h32 #define on_each_cpu(cb, data, wait) ({ \
33 CTASSERT(wait); \
H A Dpoll.h37 #include <linux/wait.h>
/freebsd-13-stable/lib/libnetbsd/sys/
H A Dwait.h33 #include_next <sys/wait.h>
/freebsd-13-stable/usr.sbin/bhyve/
H A Drfb.h36 int rfb_init(char *hostname, int port, int wait, char *password);
H A Dgdb.h37 void init_gdb(struct vmctx *ctx, int sport, bool wait);
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/
H A Dtst.forker.c28 #include <sys/wait.h>
45 (void) wait(NULL);
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/probes/
H A Dtst.probestar.d47 syscall::*wait*:entry
/freebsd-13-stable/crypto/openssh/openbsd-compat/
H A Dbsd-waitpid.c29 #include <sys/wait.h>
35 union wait statusp;
43 /* wait4() wants pid=0 for indiscriminate wait. */
H A Dbsd-nextstep.c29 #include <sys/wait.h>
35 union wait statusp;
38 #undef wait /* Use NeXT's wait() function */ macro
39 wait_pid = wait(&statusp);
/freebsd-13-stable/lib/libc/gen/
H A Dwait.c33 __SCCSID("@(#)wait.c 8.1 (Berkeley) 6/4/93");
39 #include <sys/wait.h>
55 __weak_reference(__wait, wait);
H A Dwait3.c39 #include <sys/wait.h>
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/events/
H A Dzed_fd_spill-zedlet.c15 #include <sys/wait.h>
25 wait(&err);
/freebsd-13-stable/sys/contrib/ck/include/spinlock/
H A Dclh.h40 unsigned int wait; member in struct:ck_spinlock_clh
50 unowned->wait = false;
63 r = ck_pr_load_uint(&head->wait);
74 thread->wait = true;
86 while (ck_pr_load_uint(&previous->wait) == true)
99 * If there are waiters, they are spinning on the current node wait
111 ck_pr_store_uint(&(*thread)->wait, false);
116 * all the time in the world to successfully read updated wait flag.
H A Dhclh.h39 unsigned int wait; member in struct:ck_spinlock_hclh
53 unowned->wait = false;
68 r = ck_pr_load_uint(&head->wait);
81 thread->wait = true;
97 while (ck_pr_load_uint(&previous->wait) == true &&
115 while (ck_pr_load_uint(&previous->wait) == true)
128 * If there are waiters, they are spinning on the current node wait
138 ck_pr_store_uint(&(*thread)->wait, false);
143 * all the time in the world to successfully read updated wait flag.
/freebsd-13-stable/sys/mips/mips/
H A Duma_machdep.c44 int wait)
52 pflags = malloc2vm_flags(wait) | VM_ALLOC_WIRED;
68 if ((wait & M_NOWAIT) != 0)
74 if ((wait & M_NODUMP) == 0)
77 if ((wait & M_ZERO) && (m->flags & PG_ZERO) == 0)
43 uma_small_alloc(uma_zone_t zone, vm_size_t bytes, int domain, u_int8_t *flags, int wait) argument
/freebsd-13-stable/lib/libc/sys/
H A Dwait4.c37 #include <sys/wait.h>
/freebsd-13-stable/contrib/tcsh/
H A Dtc.wait.h2 * tc.wait.h: <sys/wait.h> for machines that don't have it or have it and
37 * a little complicated #include <sys/wait.h>! :-(
38 * We try to use the system's wait.h when we can...
52 # include <sys/wait.h> /* 7.0 fixed it again */
56 # include <sys/wait.h>
64 # include "mi.wait.h"
67 # include <sys/wait.h>
74 * This wait is for big-endians and little endians
76 union wait { union
[all...]
/freebsd-13-stable/contrib/kyua/utils/process/
H A Doperations.hpp49 status wait(const int);
H A Dsystem.cpp33 #include <sys/wait.h>
/freebsd-13-stable/sys/riscv/riscv/
H A Duma_machdep.c41 int wait)
49 malloc2vm_flags(wait) | VM_ALLOC_NOOBJ | VM_ALLOC_WIRED);
53 if ((wait & M_NODUMP) == 0)
56 if ((wait & M_ZERO) && (m->flags & PG_ZERO) == 0)
40 uma_small_alloc(uma_zone_t zone, vm_size_t bytes, int domain, u_int8_t *flags, int wait) argument
/freebsd-13-stable/sys/arm64/arm64/
H A Duma_machdep.c42 int wait)
50 malloc2vm_flags(wait) | VM_ALLOC_NOOBJ | VM_ALLOC_WIRED);
54 if ((wait & M_NODUMP) == 0)
57 if ((wait & M_ZERO) && (m->flags & PG_ZERO) == 0)
41 uma_small_alloc(uma_zone_t zone, vm_size_t bytes, int domain, u_int8_t *flags, int wait) argument
/freebsd-13-stable/sys/amd64/amd64/
H A Duma_machdep.c44 int wait)
52 malloc2vm_flags(wait) | VM_ALLOC_NOOBJ | VM_ALLOC_WIRED);
56 if ((wait & M_NODUMP) == 0)
59 if ((wait & M_ZERO) && (m->flags & PG_ZERO) == 0)
43 uma_small_alloc(uma_zone_t zone, vm_size_t bytes, int domain, u_int8_t *flags, int wait) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DGraphWriter.cpp119 StringRef Filename, bool wait,
121 if (wait) {
173 bool llvm::DisplayGraph(StringRef FilenameRef, bool wait, argument
181 wait &= !ViewBackground;
185 if (wait)
189 if (!ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg))
198 if (!ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg))
209 return ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg);
222 return ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg);
284 wait
118 ExecGraphViewer(StringRef ExecPath, std::vector<StringRef> &args, StringRef Filename, bool wait, std::string &ErrMsg) argument
[all...]
/freebsd-13-stable/contrib/tcp_wrappers/
H A Dshell_cmd.c19 #include <sys/wait.h>
58 while ((wait_pid = wait((int *) 0)) != -1 && wait_pid != child_pid)
/freebsd-13-stable/contrib/netbsd-tests/lib/libc/termios/
H A Dt_tcsetpgrp.c34 #include <sys/wait.h>
75 (void)wait(&sta);

Completed in 302 milliseconds

1234567891011>>