Searched refs:wait (Results 26 - 50 of 776) sorted by relevance

1234567891011>>

/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dbsd-nextstep.h39 /* Swap out NeXT's BSD wait() for a more POSIX complient one */
41 #define wait(a) posix_wait(a) macro
/freebsd-11-stable/sys/cam/ctl/
H A Dctl_ha.h123 size_t len, int wait);
125 size_t len, int wait);
127 size_t len, const void *addr2, size_t len2, int wait);
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/stdlib/
H A Dt_exit.c34 #include <sys/wait.h>
75 (void)wait(&sta);
103 (void)wait(&sta);
131 (void)wait(&sta);
166 (void)wait(&sta);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DThreadPool.cpp28 // Create ThreadCount threads that will loop forever, wait on QueueCondition
38 QueueCondition.wait(LockGuard,
46 // in order for wait() to properly detect that even if the queue is
59 // Adjust `ActiveThreads`, in case someone waits on ThreadPool::wait()
64 // Notify task completion, in case someone waits on ThreadPool::wait()
71 void ThreadPool::wait() { function in class:ThreadPool
77 CompletionCondition.wait(LockGuard,
122 void ThreadPool::wait() {
134 // Wrap the future so that both ThreadPool::wait() can operate and the
142 wait();
[all...]
/freebsd-11-stable/contrib/unbound/util/
H A Dmini_event.c141 /** call timeouts handlers, and return how long to wait for next one or -1 */
143 struct timeval* wait)
147 wait->tv_sec = (time_t)-1;
156 /* there is a next larger timeout. wait for it */
157 wait->tv_sec = p->ev_timeout.tv_sec - now->tv_sec;
159 wait->tv_sec--;
160 wait->tv_usec = 1000000 - (now->tv_usec -
163 wait->tv_usec = p->ev_timeout.tv_usec
178 static int handle_select(struct event_base* base, struct timeval* wait) argument
184 if(wait
142 handle_timeouts(struct event_base* base, struct timeval* now, struct timeval* wait) argument
232 struct timeval wait; local
[all...]
H A Dwinsock_event.c162 /** call timeouts handlers, and return how long to wait for next one or -1 */
164 struct timeval* wait)
168 wait->tv_sec = (time_t)-1;
178 /* there is a next larger timeout. wait for it */
179 wait->tv_sec = p->ev_timeout.tv_sec - now->tv_sec;
181 wait->tv_sec--;
182 wait->tv_usec = 1000000 - (now->tv_usec -
185 wait->tv_usec = p->ev_timeout.tv_usec
188 verbose(VERB_CLIENT, "winsock_event wait=" ARG_LL "d.%6.6d",
189 (long long)wait
163 handle_timeouts(struct event_base* base, struct timeval* now, struct timeval* wait) argument
230 handle_select(struct event_base* base, struct timeval* wait) argument
431 struct timeval wait; local
[all...]
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/gen/
H A Dt_assert.c37 #include <sys/wait.h>
97 (void)wait(&sta);
135 (void)wait(&sta);
H A Dt_alarm.c34 #include <sys/wait.h>
104 (void)wait(&sta);
H A Dt_getgrent.c61 #include <sys/wait.h>
162 (void)wait(&sta);
H A Dt_pause.c34 #include <sys/wait.h>
101 (void)wait(&sta);
/freebsd-11-stable/sys/powerpc/powerpc/
H A Duma_machdep.c54 uma_small_alloc(uma_zone_t zone, vm_size_t bytes, u_int8_t *flags, int wait) argument
63 malloc2vm_flags(wait) | VM_ALLOC_WIRED | VM_ALLOC_NOOBJ);
78 if ((wait & M_ZERO) && (m->flags & PG_ZERO) == 0)
/freebsd-11-stable/contrib/llvm-project/libcxx/src/
H A Dshared_mutex.cpp32 __gate1_.wait(lk);
35 __gate2_.wait(lk);
65 __gate1_.wait(lk);
/freebsd-11-stable/contrib/gdb/gdb/config/
H A Dnm-lynx.h59 #define WIFTID(x) (((union wait *)&x)->w_tid)
/freebsd-11-stable/contrib/libbegemot/
H A Drpoll.h44 void poll_dispatch(int wait);
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Dtst.gcc.c30 #include <sys/wait.h>
/freebsd-11-stable/crypto/heimdal/appl/rcp/
H A Drcp_locl.h44 #include <sys/wait.h>
/freebsd-11-stable/lib/libc/sys/
H A Dwait6.c37 #include <sys/wait.h>
/freebsd-11-stable/lib/libc/gen/
H A Dwaitpid.c39 #include <sys/wait.h>
/freebsd-11-stable/sys/riscv/riscv/
H A Duma_machdep.c44 uma_small_alloc(uma_zone_t zone, vm_size_t bytes, u_int8_t *flags, int wait) argument
/freebsd-11-stable/sys/sys/
H A Dbusdma_bufalloc.h114 uint8_t *pflag, int wait);
/freebsd-11-stable/tools/regression/security/cap_test/
H A Dcap_test_sysctl.c41 #include <sys/wait.h>
/freebsd-11-stable/contrib/tcsh/
H A Dmi.wait.h1 /* The <sys/wait.h> header contains macros related to wait(). The value
2 * returned by wait() and waitpid() depends on whether the process
26 #define WNOHANG 1 /* do not wait for child to exit */
41 _PROTOTYPE( pid_t wait, (int *_stat_loc) );
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerUtilLinux.cpp17 #include <sys/wait.h>
/freebsd-11-stable/contrib/tnftp/src/
H A Dprogressbar.c136 struct timeval now, wait; local
175 timersub(&now, &lastupdate, &wait);
179 wait.tv_sec = 0;
182 if (quit_time > 0 && wait.tv_sec > quit_time) {
185 getprogname(), (unsigned long)wait.tv_sec);
272 } else if (wait.tv_sec >= STALLTIME) {
314 struct timeval now, td, wait; local
373 timersub(&now, &lastupdate, &wait);
374 if (wait.tv_sec >= STALLTIME)
400 * Set the SIGALRM interval timer for wait second
403 alarmtimer(int wait) argument
[all...]
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_getsid.c34 #include <sys/wait.h>
105 (void)wait(&sta);

Completed in 189 milliseconds

1234567891011>>