| /freebsd-12-stable/usr.bin/mail/ |
| D | popen.c | 361 int wait_status; variable 383 rv = waitpid(pid, &wait_status, 0); in wait_child() 385 wait_status = cp->status; in wait_child() 389 if (rv == -1 || (WIFEXITED(wait_status) && WEXITSTATUS(wait_status))) in wait_child()
|
| D | cmd2.c | 50 extern int wait_status; 378 if (WIFSIGNALED(wait_status) && WCOREDUMP(wait_status)) in core()
|
| D | fio.c | 55 extern int wait_status; 389 if (wait_child(pid) < 0 && WIFSIGNALED(wait_status) && in expand() 390 WTERMSIG(wait_status) != SIGPIPE) { in expand()
|
| /freebsd-12-stable/contrib/gdb/gdb/ |
| D | inftarg.c | 166 child_post_wait (ptid_t ptid, int wait_status) in child_post_wait() argument 467 child_has_exited (int pid, int wait_status, int *exit_status) in child_has_exited() argument 469 if (WIFEXITED (wait_status)) in child_has_exited() 471 *exit_status = WEXITSTATUS (wait_status); in child_has_exited() 475 if (WIFSIGNALED (wait_status)) in child_has_exited()
|
| D | target.h | 787 #define target_has_exited(pid,wait_status,exit_status) \ argument 788 (*current_target.to_has_exited) (pid,wait_status,exit_status)
|
| D | infrun.c | 670 struct target_waitstatus wait_status; in prepare_to_proceed() local 673 get_last_target_status (&wait_ptid, &wait_status); in prepare_to_proceed() 677 if (wait_status.kind != TARGET_WAITKIND_STOPPED in prepare_to_proceed() 678 || (wait_status.value.sig != TARGET_SIGNAL_TRAP && in prepare_to_proceed() 679 wait_status.value.sig != TARGET_SIGNAL_INT)) in prepare_to_proceed()
|
| D | target.c | 2213 debug_to_has_exited (int pid, int wait_status, int *exit_status) in debug_to_has_exited() argument 2217 has_exited = debug_target.to_has_exited (pid, wait_status, exit_status); in debug_to_has_exited() 2220 pid, wait_status, *exit_status, has_exited); in debug_to_has_exited()
|
| D | infttrace.c | 3786 int wait_status; in kill_inferior() local
|
| /freebsd-12-stable/contrib/subversion/subversion/svnserve/ |
| D | winservice.c | 330 DWORD wait_status; in winservice_start() local 366 wait_status = WaitForMultipleObjects(2, handles, FALSE, INFINITE); in winservice_start() 367 switch (wait_status) in winservice_start()
|
| /freebsd-12-stable/contrib/binutils/binutils/ |
| D | dllwrap.c | 345 int pid, wait_status, retcode; in run() local 402 pid = pwait (pid, &wait_status, 0); in run() 408 else if (WIFSIGNALED (wait_status)) in run() 410 warn (_("subprocess got fatal signal %d"), WTERMSIG (wait_status)); in run() 413 else if (WIFEXITED (wait_status)) in run() 415 if (WEXITSTATUS (wait_status) != 0) in run() 417 warn (_("%s exited with status %d"), what, WEXITSTATUS (wait_status)); in run()
|
| D | dlltool.c | 1173 int pid, wait_status; in run() local 1214 pid = pwait (pid, & wait_status, 0); in run() 1221 else if (WIFSIGNALED (wait_status)) in run() 1224 fatal (_("subprocess got fatal signal %d"), WTERMSIG (wait_status)); in run() 1226 else if (WIFEXITED (wait_status)) in run() 1228 if (WEXITSTATUS (wait_status) != 0) in run() 1231 what, WEXITSTATUS (wait_status)); in run()
|
| D | resrc.c | 206 int pid, wait_status, retcode; in run_cmd() local 289 pid = pwait (pid, &wait_status, 0); in run_cmd() 296 else if (WIFSIGNALED (wait_status)) in run_cmd() 298 fatal (_("subprocess got fatal signal %d"), WTERMSIG (wait_status)); in run_cmd() 301 else if (WIFEXITED (wait_status)) in run_cmd() 303 if (WEXITSTATUS (wait_status) != 0) in run_cmd() 306 WEXITSTATUS (wait_status)); in run_cmd()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ |
| D | NativeProcessFreeBSD.cpp | 748 WaitStatus wait_status = WaitStatus::Decode(status); in SigchldHandler() local 749 bool exited = wait_status.type == WaitStatus::Exit || in SigchldHandler() 750 (wait_status.type == WaitStatus::Signal && in SigchldHandler() 758 MonitorExited(wait_pid, wait_status); in SigchldHandler() 760 assert(wait_status.type == WaitStatus::Stop); in SigchldHandler() 761 MonitorCallback(wait_pid, wait_status.status); in SigchldHandler()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/ |
| D | NativeProcessNetBSD.cpp | 788 WaitStatus wait_status = WaitStatus::Decode(status); in SigchldHandler() local 789 bool exited = wait_status.type == WaitStatus::Exit || in SigchldHandler() 790 (wait_status.type == WaitStatus::Signal && in SigchldHandler() 798 MonitorExited(wait_pid, wait_status); in SigchldHandler() 800 assert(wait_status.type == WaitStatus::Stop); in SigchldHandler() 801 MonitorCallback(wait_pid, wait_status.status); in SigchldHandler()
|
| /freebsd-12-stable/contrib/gcc/ |
| D | protoize.c | 1892 int wait_status, pid; in gen_aux_info_file() local 1907 pid = pwait (pid, &wait_status, 0); in gen_aux_info_file() 1913 if (WIFSIGNALED (wait_status)) in gen_aux_info_file() 1916 pname, WTERMSIG (wait_status)); in gen_aux_info_file() 1919 if (WIFEXITED (wait_status)) in gen_aux_info_file() 1921 if (WEXITSTATUS (wait_status) != 0) in gen_aux_info_file() 1924 pname, compile_params[0], WEXITSTATUS (wait_status)); in gen_aux_info_file()
|
| /freebsd-12-stable/sys/contrib/octeon-sdk/ |
| D | cvmx-nand.h | 374 cvmx_nand_cmd_wait_status_t wait_status; member
|
| /freebsd-12-stable/contrib/llvm-project/openmp/runtime/src/ |
| D | z_Windows_NT_util.cpp | 1015 DWORD wait_status; in __kmp_launch_monitor() local 1062 wait_status = WaitForSingleObject(__kmp_monitor_ev, interval); in __kmp_launch_monitor() 1064 if (wait_status == WAIT_TIMEOUT) { in __kmp_launch_monitor()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| D | GDBRemoteCommunicationServerLLGS.cpp | 452 auto wait_status = process->GetExitStatus(); in SendWResponse() local 453 if (!wait_status) { in SendWResponse() 464 *wait_status); in SendWResponse() 467 response.Format("{0:g}", *wait_status); in SendWResponse()
|
| /freebsd-12-stable/contrib/tnftp/src/ |
| D | cmds.c | 1432 int wait_status; in shell() local 1467 while (wait(&wait_status) != pid) in shell()
|
| /freebsd-12-stable/contrib/gdb/gdb/doc/ |
| D | gdbint.texinfo | 504 @item STOPPED_BY_WATCHPOINT (@var{wait_status}) 505 Return non-zero if stopped by a watchpoint. @var{wait_status} is of
|