Home
last modified time | relevance | path

Searched refs:WCONTINUED (Results 1 – 9 of 9) sorted by relevance

/illumos-gate/usr/src/uts/common/sys/
H A Dwait.h61 #define WCONTINUED 0010 /* wait for processes continued */ macro
63 #define WOPTMASK (WEXITED|WTRAPPED|WSTOPPED|WCONTINUED|WNOHANG|WNOWAIT)
/illumos-gate/usr/src/cmd/csh/
H A Dwait3.c75 options |= (WNOHANG|WUNTRACED|WEXITED|WSTOPPED|WTRAPPED|WCONTINUED); in csh_wait3()
140 WEXITED | WTRAPPED | WSTOPPED | WCONTINUED | WNOWAIT) != 0) in csh_wait_noreap()
/illumos-gate/usr/src/ucbhead/sys/
H A Dwait.h111 #define WCONTINUED 0010 /* wait for processes continued */ macro
118 #define WOPTMASK (WEXITED|WTRAPPED|WSTOPPED|WCONTINUED|WNOHANG|WNOWAIT)
/illumos-gate/usr/src/cmd/truss/
H A Dprocset.c116 ~(WEXITED|WTRAPPED|WSTOPPED|WCONTINUED|WNOHANG|WNOWAIT)) in woptions()
126 if (arg & WCONTINUED) in woptions()
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dwaitpid.c136 if (options & ~(WNOHANG|WUNTRACED|WCONTINUED)) { in wait4()
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/sh/
H A Djobs.c38 #if !defined(WCONTINUED) || !defined(WIFCONTINUED)
39 # undef WCONTINUED
40 # define WCONTINUED 0 macro
347 static int wcontinued = WCONTINUED; in job_reap()
418 if (pid<0 && errno==EINVAL && (flags&WCONTINUED)) in job_reap()
419 pid = waitpid((pid_t)-1,&wstat,flags&=~WCONTINUED); in job_reap()
/illumos-gate/usr/src/lib/libldap5/include/ldap/
H A Dportable.h106 #define WAIT_FLAGS ( WNOHANG | WUNTRACED | WCONTINUED )
/illumos-gate/usr/src/cmd/sh/
H A Djobs.c317 wflags = WUNTRACED|WCONTINUED; in collectjobs()
/illumos-gate/usr/src/uts/common/os/
H A Dexit.c1202 if (!(options & WCONTINUED)) in waitid()