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

12345

/barrelfish-2018-10-04/lib/libc/gen/
H A Dwait.c31 static char 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>
H A Dwaitpid.c39 #include <sys/wait.h>
H A Dwaitid.c34 #include <sys/wait.h>
/barrelfish-2018-10-04/lib/libc/sys/
H A Dwait4.c37 #include <sys/wait.h>
H A Dwait6.c37 #include <sys/wait.h>
/barrelfish-2018-10-04/kernel/include/arch/x86/
H A Dglobal.h35 volatile uint64_t wait[8]; member in struct:global
/barrelfish-2018-10-04/tools/harness/
H A Dsubprocess_timeout.py32 p.wait()
/barrelfish-2018-10-04/lib/bomp/include/
H A Dspin.h32 uint32_t wait = 750; local
41 : "+m" (*lock), "=r"(wait) : : "memory", "cc");
/barrelfish-2018-10-04/lib/cxx/cxx/
H A Dshared_mutex.cpp27 __gate1_.wait(lk);
30 __gate2_.wait(lk);
60 __gate1_.wait(lk);
H A Dcondition_variable.cpp35 condition_variable::wait(unique_lock<mutex>& lk) _NOEXCEPT
39 "condition_variable::wait: mutex not locked");
42 __throw_system_error(ec, "condition_variable wait failed");
52 "condition_variable::timed wait: mutex not locked");
H A Dmutex.cpp126 __cv_.wait(lk);
176 __cv_.wait(lk);
/barrelfish-2018-10-04/usr/monitor/capops/
H A Ddelete_int.h39 bool wait; member in struct:delete_st
/barrelfish-2018-10-04/lib/libc/tests/gen/
H A Darc4random_test.c32 #include <sys/wait.h>
77 wait(&status);
H A Dposix_spawn_test.c35 #include <sys/wait.h>
H A Dftw_test.c34 #include <sys/wait.h>
/barrelfish-2018-10-04/lib/posixcompat/
H A Dwait.c10 #include <sys/wait.h>
24 pid_t wait(int *status) function
70 // We got a child to wait for
/barrelfish-2018-10-04/include/storage/
H A Dvsic.h31 errval_t (*wait)(struct storage_vsic *vsic); member in struct:storage_vsic_ops
/barrelfish-2018-10-04/lib/rcce/
H A Dring_barriers.c275 static void wait(void) function
288 wait();
290 wait();
294 wait();
296 wait();
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/drivers/infiniband/hw/mthca/
H A Dmthca_provider.h176 * Possible optimizations (wait for profile data to see if/where we
217 wait_queue_head_t wait; member in struct:mthca_cq
241 wait_queue_head_t wait; member in struct:mthca_srq
283 wait_queue_head_t wait; member in struct:mthca_qp
/barrelfish-2018-10-04/lib/libc/stdlib/
H A Dsystem.c38 #include <sys/wait.h>
93 * Block SIGINT/QUIT because sh -c handles it and wait for
/barrelfish-2018-10-04/usr/bench/tenaciousd_bench/
H A Dtenaciousd_bench.c51 err = vsic.ops.wait(&vsic);
/barrelfish-2018-10-04/lib/tenaciousd/
H A Dlog.c51 err = log->vsic->ops.wait(log->vsic);
75 err = log->vsic->ops.wait(log->vsic);
107 err = vsic->ops.wait(vsic);
145 err = vsic->ops.wait(vsic);
160 // Update header and flush again and wait for it to finish
176 err = log->vsic->ops.wait(log->vsic);
H A Dqueue.c54 err = queue->vsic->ops.wait(queue->vsic);
84 err = queue->vsic->ops.wait(queue->vsic);
124 err = vsic->ops.wait(vsic);
167 err = vsic->ops.wait(vsic);
183 // Update header and flush again and wait for it to finish
200 err = queue->vsic->ops.wait(queue->vsic);
/barrelfish-2018-10-04/include/sys/
H A Dwait.h29 * @(#)wait.h 8.2 (Berkeley) 7/10/94
40 * alternate interfaces that use it (wait, wait3, waitpid).
44 * Macros to test the exit status returned by wait and extract the relevant
70 * wait to not hang if there are no stopped or terminated processes, rather
73 * which stop due to signals. If children are stopped and a wait without
78 #define WNOHANG 1 /* Don't hang in wait. */
145 * Should be used in kernel to construct the wait(2)-compatible process
158 pid_t wait(int *);

Completed in 114 milliseconds

12345