| /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/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/lib/libc/port/gen/ |
| waitpid.c | 33 * All of the wait*() functions are cancellation points. 36 #pragma weak _wait = wait 42 #include <wait.h> 49 * Convert the siginfo_t code and status fields to an old style wait status. 111 wait(int *stat_loc) function
|
| /onnv/onnv-gate/usr/src/cmd/lms/SyncLib/src/ |
| EventUnix.cpp | 113 bool Event::wait(unsigned long msecs_p) function in class:Event 128 //printf("@@@@ Event (%p) wait (cond %p), set: %d (to %d)\n", 134 //printf("@@@@ Event (%p) after wait, set: %d\n", this, _osEvent->_ose->_set); 137 //printf("@@@@ Event (%p) after wait, set: %d\n", this, _osEvent->_ose->_set); 147 //printf("@@@@ Event (%p) wait (cond %p), set: %d\n", 153 //printf("@@@@ Event (%p) after wait, set: %d\n", this, _osEvent->_ose->_set);
|
| ThreadUnix.cpp | 96 bool Thread::wait(unsigned long msecs_p) const function in class:Thread 123 //printf("@@@@ Thread wait (%p), running: %d\n", _osThread, _osThread->_running); 128 //printf("@@@@ Thread after wait\n");
|
| /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/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/stand/lib/fs/nfs/ |
| bootparams.c | 86 int resp_wait; /* secs to wait for resp */ 109 * Retransmit/wait for up to resp_wait secs. 145 resp_wait = 0; /* go to default wait now. */ 224 int wait; local 267 * Wait only 32 secs for rpc_call to succeed. 270 wait = def_wait; 274 xdr_bp_getfile_res, (caddr_t)&res, rexmit, wait, 287 wait = def_wait; 301 wait, &to, &from, AUTH_NONE); 328 rexmit = wait; [all...] |
| mount.c | 149 * Wait up to 16 secs for first response, retransmitting expon. 164 resp_wait = 0; /* use default wait time. */ 325 * Wait up to 16 secs for first response, retransmitting expon. 348 resp_wait = 0; /* use default wait time. */ 389 struct timeval wait; local 395 wait.tv_sec = RPC_RCVWAIT_MSEC / 1000; 396 wait.tv_usec = 0; 411 NFS_V4, wait, &fd, 426 xdr_void, NULL, wait); 563 struct timeval wait; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/awt/ |
| StatusBar.java | 135 wait(); method 137 wait(wakeupTime - currentTime);
|
| /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/base/ |
| Registry.java | 164 wait(); method
|
| /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/libbc/libc/sys/common/ |
| wait.c | 45 #include <sys/wait.h> 64 * arguments to wait functions from SVR4 67 #define N_WEXITED 0001 /* wait for processes that have exite */ 68 #define N_WTRAPPED 0002 /* wait for processes stopped while tracing */ 69 #define N_WSTOPPED 0004 /* wait for processes stopped by signals */ 70 #define N_WCONTINUED 0010 /* wait for processes continued */ 74 #define N_WNOHANG 0100 /* non blocking form of wait */ 75 #define N_WNOWAIT 0200 /* non destructive form of wait */ 109 wait(int *status) function 136 * BSD's wait* routines only support WNOHANG & WUNTRACE [all...] |
| /onnv/onnv-gate/usr/src/lib/libnisdb/ |
| nisdb_rw.h | 146 uint32_t wait; /* Blocked on mutex */ member in struct:__nisdb_rwlock
|
| /onnv/onnv-gate/usr/src/uts/common/avs/ns/sdbc/ |
| sd_iob.h | 61 kcondvar_t wait; /* sync for sleeping on synch i/o */ member in struct:iob_hook
|
| /onnv/onnv-gate/usr/src/uts/common/fs/sockfs/ |
| nl7clogd.c | 78 kcondvar_t wait; member in struct:logd_s 375 kcondvar_t *wait = &logdp->wait; local 382 /* Wait for something to do */ 385 cv_wait(wait, lock); 560 cv_init(&logd.wait, NULL, CV_DEFAULT, NULL); 632 cv_signal(&logd.wait); 748 cv_signal(&logd.wait);
|
| /onnv/onnv-gate/usr/src/uts/common/io/aac/ |
| aac_ioctl.h | 86 int32_t wait; member in struct:aac_get_adapter_fib
|
| /onnv/onnv-gate/usr/src/uts/common/os/ |
| exit.c | 44 #include <sys/wait.h> 78 * convert code/data pair into old style wait status 875 * Format siginfo structure for wait system calls. 900 * Wait system call. 1109 * change state while we wait, we don't wait at all. 1125 * The wait() system call trap is no longer invoked by libc. 1130 wait(void) function 1237 * We wait until now to free the cred structure because a
|
| /onnv/onnv-gate/usr/src/uts/common/io/arn/ |
| arn_mac.c | 200 uint32_t tsfLow, j, wait; local 204 for (wait = 1000; wait != 0; wait--) { 235 wait = 1000; 238 if ((--wait) == 0) { 253 return (wait != 0);
|
| /onnv/onnv-gate/usr/src/uts/common/inet/ |
| squeue.c | 239 squeue_create(clock_t wait, pri_t pri) 246 sqp->sq_wait = MSEC_TO_TICK(wait); 349 clock_t wait = sqp->sq_wait; local 351 * Wait up to sqp->sq_wait ms for an 364 tid = timeout(squeue_fire, sqp, wait); 1035 * If the squeue is quiesced, then wait for a control [all...] |
| /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/gui/dchanger/ |
| DCPanel.java | 173 * Sleeps till the timer's services are requested using wait() and 182 // Wait till the timer is required 183 wait(); method 212 * The first stage of timer - is a longer timer. Wait to see if the
|
| /onnv/onnv-gate/usr/src/uts/sun4u/io/ |
| zuluvm.c | 257 int wait = 0; local 283 wait |= ZULUVM_WAIT_INTR1; 289 wait |= ZULUVM_WAIT_INTR2; 331 if (zdev->intr_flags | wait) 407 * It will set the wait flag, in that case we send 412 if (zdev->intr_flags | wait) 438 int wait = 0; local 458 * It will set the wait flag, in that case we send 465 wait = ZULUVM_WAIT_INTR1; 470 wait = ZULUVM_WAIT_INTR2 854 int wait = 0; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/fwflash/plugins/transport/common/ |
| ses.c | 668 ucode_wait_t wait; local 721 wait.uw_prevstatus = -1ULL; 722 wait.uw_oldnp = np; 732 &wait); local
|