| /onnv/onnv-gate/usr/src/cmd/dtrace/demo/io/ |
| iocpu.d | 42 io:::wait-start 45 self->wait = timestamp; 48 io:::wait-done 49 /self->wait/ 51 @io[args[2]->fi_name] = sum(timestamp - self->wait); 52 @time["<I/O wait>"] = sum(timestamp - self->wait); 53 self->wait = 0; 62 printf("\nI/O wait breakdown (milliseconds):\n");
|
| /onnv/onnv-gate/usr/src/head/ |
| wait.h | 34 #include <sys/wait.h> 42 extern pid_t wait(int *); 48 extern pid_t wait();
|
| /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/usdt/ |
| tst.forker.c | 43 (void) wait(NULL);
|
| /onnv/onnv-gate/usr/src/cmd/ssh/libopenbsd-compat/common/ |
| bsd-waitpid.c | 31 #include <sys/wait.h> 37 union wait statusp; 45 pid = 0; /* wait4() wants pid=0 for indiscriminate wait. */
|
| /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.bin/talk/ |
| ctl_transact.c | 47 /* the amount of time to wait for a response, in seconds */ 68 struct timeval wait; local 70 wait.tv_sec = CTL_WAIT; 71 wait.tv_usec = 0; 106 0, 0, &wait)) < 0) { 139 timerclear(&wait); 140 nready = select(32, (fd_set *)&read_mask, 0, 0, &wait);
|
| msgs.c | 63 static struct timeval wait = { MSG_INTERVAL, 0}; variable in typeref:struct:timeval 77 itimer.it_value = itimer.it_interval = wait;
|
| io.c | 67 struct timeval wait; local 76 * wait on both the other process (sockt_mask) and 86 wait.tv_sec = A_LONG_TIME; 87 wait.tv_usec = 0; 89 nb = select(32, (fd_set *)&read_set, 0, 0, &wait); 113 pause(); /* wait for Ctrl-C */
|
| /onnv/onnv-gate/usr/src/lib/libast/amd64/include/ast/ |
| wait.h | 26 * ast POSIX wait/exit support 44 __STDPP__directive pragma pp:hide wait waitpid 46 #define wait ______wait 49 #include <sys/wait.h> 51 __STDPP__directive pragma pp:nohide wait waitpid 53 #undef wait 104 extern __MANGLE__ pid_t wait __PROTO__((int*));
|
| /onnv/onnv-gate/usr/src/lib/libast/common/include/ |
| wait.h | 24 * ast POSIX wait/exit support 35 __STDPP__directive pragma pp:hide wait waitpid 37 #define wait ______wait 40 #include <sys/wait.h> 42 __STDPP__directive pragma pp:nohide wait waitpid 44 #undef wait 95 extern pid_t wait(int*);
|
| /onnv/onnv-gate/usr/src/lib/libast/i386/include/ast/ |
| wait.h | 26 * ast POSIX wait/exit support 44 __STDPP__directive pragma pp:hide wait waitpid 46 #define wait ______wait 49 #include <sys/wait.h> 51 __STDPP__directive pragma pp:nohide wait waitpid 53 #undef wait 104 extern __MANGLE__ pid_t wait __PROTO__((int*));
|
| /onnv/onnv-gate/usr/src/lib/libast/sparc/include/ast/ |
| wait.h | 26 * ast POSIX wait/exit support 44 __STDPP__directive pragma pp:hide wait waitpid 46 #define wait ______wait 49 #include <sys/wait.h> 51 __STDPP__directive pragma pp:nohide wait waitpid 53 #undef wait 104 extern __MANGLE__ pid_t wait __PROTO__((int*));
|
| /onnv/onnv-gate/usr/src/lib/libast/sparcv9/include/ast/ |
| wait.h | 26 * ast POSIX wait/exit support 44 __STDPP__directive pragma pp:hide wait waitpid 46 #define wait ______wait 49 #include <sys/wait.h> 51 __STDPP__directive pragma pp:nohide wait waitpid 53 #undef wait 104 extern __MANGLE__ pid_t wait __PROTO__((int*));
|
| /onnv/onnv-gate/usr/src/lib/libslp/clib/ |
| slp_queue.c | 64 cond_t *wait; member in struct:queue 72 * queues can operate in one of two modes: timed-wait, and infinite 73 * wait. The timeout parameter specifies which of these modes should 78 cond_t *wait; local 91 if (!(wait = calloc(1, sizeof (*wait)))) { 96 (void) cond_init(wait, NULL, NULL); 107 q->wait = wait; 138 (void) cond_signal(q->wait); [all...] |
| /onnv/onnv-gate/usr/src/cmd/oamuser/user/ |
| call_pass.c | 35 #include <sys/wait.h> 72 while ((wpid = wait(&ret)) != cpid) {
|
| /onnv/onnv-gate/usr/src/lib/libpri/common/ |
| pri.h | 44 extern ssize_t pri_get(uint8_t wait, uint64_t *token, uint64_t **buf,
|
| /onnv/onnv-gate/usr/src/ucblib/libucb/port/sys/ |
| wait3.c | 50 #include <sys/wait.h>
|
| /onnv/onnv-gate/usr/src/cmd/lms/SyncLib/Include/ |
| Event.h | 55 bool wait(unsigned long msecs = WAIT_INFINITE);
|
| Thread.h | 76 // wait for the thread to complete; return true if the thread completed, 78 bool wait(unsigned long msecs = WAIT_INFINITE) const;
|
| /onnv/onnv-gate/usr/src/cmd/syslogd/ |
| queue.c | 91 dataq_waiter_t wait; local 96 wait.wakeup = 0; 97 (void) pthread_cond_init(&wait.cv, NULL); 99 ll_enqueue(&dataq->waiters, &wait.list); 100 while (wait.wakeup == 0) 101 (void) pthread_cond_wait(&wait.cv, &dataq->lock); 104 (void) pthread_cond_destroy(&wait.cv);
|
| /onnv/onnv-gate/usr/src/cmd/csh/ |
| wait.h | 19 * This file holds definitions relevant to the wait system call. 34 * wait and wait3. If w_stopval==WSTOPPED, then the second structure 37 union wait { union 86 * wait to not hang if there are no stopped or terminated processes, rather 89 * which stop due to signals. If children are stopped and a wait without 93 #define WNOHANG 1 /* dont hang in wait */ 100 extern pid_t csh_wait3(union wait *w, int options, struct rusage *rp);
|
| /onnv/onnv-gate/usr/src/lib/libmail/common/ |
| systemvp.c | 47 #include <wait.h> 67 w = wait(&status);
|
| /onnv/onnv-gate/usr/src/lib/libwrap/ |
| shell_cmd.c | 30 #include <wait.h> 66 while ((wait_pid = wait((int *) 0)) != -1 && wait_pid != child_pid)
|
| /onnv/onnv-gate/usr/src/ucbhead/sys/ |
| wait.h | 48 * This wait.h is a combination of SunOS's wait.h and SysV wait.h 49 * The structure 'union wait' is taken from SunOS, while the 55 * wait and wait3. If w_stopval==WSTOPPED, then the second structure 58 union wait { union 97 /* ----- begin SysV wait.h ----- */ 107 * arguments to wait functions 110 #define WEXITED 0001 /* wait for processes that have exite */ 111 #define WTRAPPED 0002 /* wait for processes stopped while tracing * [all...] |
| /onnv/onnv-gate/usr/src/lib/libc/port/sys/ |
| bsd_signal.c | 35 #include <wait.h>
|
| /onnv/onnv-gate/usr/src/uts/common/io/chxge/com/ |
| espi.h | 55 u32 t1_espi_get_mon(adapter_t *adapter, u32 addr, u8 wait);
|