Home
last modified time | relevance | path

Searched refs:WUNTRACED (Results 1 – 15 of 15) sorted by relevance

/glibc-2.36/posix/
Dtst-wait-skeleton.c49 # define WSTOPPED WUNTRACED
92 ret = WAIT_CALL (pid, &wstatus, WUNTRACED|WCONTINUED|WNOHANG, NULL); in do_test_wait()
99 ret = WAIT_CALL (pid, &wstatus, WUNTRACED|WCONTINUED|WNOHANG, &rusage); in do_test_wait()
106 ret = WAIT_CALL (pid, NULL, WUNTRACED|WCONTINUED|WNOHANG, &rusage); in do_test_wait()
108 ret = WAIT_CALL (pid, NULL, WUNTRACED|WCONTINUED|WNOHANG, NULL); in do_test_wait()
125 ret = WAIT_CALL (pid, &wstatus, WUNTRACED|WCONTINUED|WNOHANG, &rusage); in do_test_wait()
140 ret = WAIT_CALL (pid, &wstatus, WUNTRACED|WNOHANG, &rusage); in do_test_wait()
Dtst-spawn6.c117 TEST_COMPARE (xwaitpid (pid, &status, WUNTRACED), pid); in run_subprogram()
Dtst-waitid.c51 # define WSTOPPED WUNTRACED
/glibc-2.36/bits/
Dwaitflags.h26 #define WUNTRACED 2 /* Report status of stopped children. */ macro
30 # define WSTOPPED WUNTRACED /* Report stopped child. */
/glibc-2.36/support/
Dsupport_subprocess.c133 killed = xwaitpid (pid, &status, WNOHANG|WUNTRACED); in support_process_kill()
156 pid_t killed = xwaitpid (proc->pid, &status, WNOHANG|WUNTRACED); in support_process_terminate()
Dsupport_test_main.c133 killed = waitpid (test_pid, &status, WNOHANG|WUNTRACED); in signal_handler()
/glibc-2.36/sysdeps/unix/sysv/linux/bits/
Dwaitflags.h26 #define WUNTRACED 2 /* Report status of stopped children. */ macro
/glibc-2.36/conform/data/sys/
Dwait.h-data7 constant WUNTRACED
/glibc-2.36/conform/data/
Dstdlib.h-data25 constant WUNTRACED
/glibc-2.36/manual/
Dprocess.texi595 @code{WNOHANG} and @code{WUNTRACED} flags. You can use the
597 and the @code{WUNTRACED} flag to request status information from stopped
666 @item WUNTRACED
Djob.texi737 Completion}. Use the @code{WUNTRACED} option so that status is reported
822 pid = waitpid (WAIT_ANY, &status, WUNTRACED|WNOHANG);
838 pid = waitpid (WAIT_ANY, &status, WUNTRACED);
Dsignal.texi1694 pid = waitpid (WAIT_ANY, &w, WNOHANG | WUNTRACED);
/glibc-2.36/ChangeLog.old/
DChangeLog.23137 (WHOHANG, WUNTRACED): Don't #define to __ versions; <waitflags.h>
DChangeLog.13265 * test-skeleton.c (timeout_handler): Use WUNTRACED flag in waitpid.
DChangeLog.1824061 WUNTRACED.