Home
last modified time | relevance | path

Searched refs:wstatp (Results 1 – 8 of 8) sorted by relevance

/dports/lang/ghc/ghc-8.10.7/libraries/unix/System/Posix/Process/
H A DCommon.hsc319 alloca $ \wstatp -> do
321 (c_waitpid pid wstatp (waitOptions block stopped))
324 _ -> do ps <- readWaitStatus wstatp
346 alloca $ \wstatp -> do
348 (c_waitpid (-pgid) wstatp (waitOptions block stopped))
351 _ -> do ps <- readWaitStatus wstatp
377 readWaitStatus wstatp = do function
378 wstat <- peek wstatp
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gdb/gdb/gdbserver/
H A Dlinux-low.c350 linux_wait_for_process (struct process_info **childp, int *wstatp) in linux_wait_for_process() argument
360 ret = waitpid (to_wait_for, wstatp, WNOHANG); in linux_wait_for_process()
370 ret = waitpid (to_wait_for, wstatp, WNOHANG | __WCLONE); in linux_wait_for_process()
384 && (!WIFSTOPPED (*wstatp) in linux_wait_for_process()
385 || (WSTOPSIG (*wstatp) != 32 in linux_wait_for_process()
386 && WSTOPSIG (*wstatp) != 33))) in linux_wait_for_process()
387 fprintf (stderr, "Got an event from %d (%x)\n", ret, *wstatp); in linux_wait_for_process()
396 && WIFSTOPPED (*wstatp)) in linux_wait_for_process()
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gdb/gdb/gdbserver/
H A Dlinux-low.c350 linux_wait_for_process (struct process_info **childp, int *wstatp) in linux_wait_for_process() argument
360 ret = waitpid (to_wait_for, wstatp, WNOHANG); in linux_wait_for_process()
370 ret = waitpid (to_wait_for, wstatp, WNOHANG | __WCLONE); in linux_wait_for_process()
384 && (!WIFSTOPPED (*wstatp) in linux_wait_for_process()
385 || (WSTOPSIG (*wstatp) != 32 in linux_wait_for_process()
386 && WSTOPSIG (*wstatp) != 33))) in linux_wait_for_process()
387 fprintf (stderr, "Got an event from %d (%x)\n", ret, *wstatp); in linux_wait_for_process()
396 && WIFSTOPPED (*wstatp)) in linux_wait_for_process()
/dports/devel/avr-gdb/gdb-7.3.1/gdb/gdbserver/
H A Dlinux-low.c995 linux_wait_for_lwp (ptid_t ptid, int *wstatp, int options) in linux_wait_for_lwp() argument
1013 ret = my_waitpid (to_wait_for, wstatp, options); in linux_wait_for_lwp()
1020 && (!WIFSTOPPED (*wstatp) in linux_wait_for_lwp()
1021 || (WSTOPSIG (*wstatp) != 32 in linux_wait_for_lwp()
1022 && WSTOPSIG (*wstatp) != 33))) in linux_wait_for_lwp()
1023 fprintf (stderr, "Got an event from %d (%x)\n", ret, *wstatp); in linux_wait_for_lwp()
1031 if (child == NULL && WIFSTOPPED (*wstatp)) in linux_wait_for_lwp()
1041 child->last_status = *wstatp; in linux_wait_for_lwp()
1072 if (WIFSTOPPED (*wstatp) && WSTOPSIG (*wstatp) == SIGTRAP) in linux_wait_for_lwp()
1105 if (WIFSTOPPED (*wstatp)) in linux_wait_for_lwp()
[all …]
/dports/devel/gdb761/gdb-7.6.1/gdb/gdbserver/
H A Dlinux-low.c1341 linux_wait_for_lwp (ptid_t ptid, int *wstatp, int options) in linux_wait_for_lwp() argument
1359 ret = my_waitpid (to_wait_for, wstatp, options); in linux_wait_for_lwp()
1366 && (!WIFSTOPPED (*wstatp) in linux_wait_for_lwp()
1367 || (WSTOPSIG (*wstatp) != 32 in linux_wait_for_lwp()
1368 && WSTOPSIG (*wstatp) != 33))) in linux_wait_for_lwp()
1377 if (child == NULL && WIFSTOPPED (*wstatp)) in linux_wait_for_lwp()
1379 add_to_pid_list (&stopped_pids, ret, *wstatp); in linux_wait_for_lwp()
1387 child->last_status = *wstatp; in linux_wait_for_lwp()
1418 if (WIFSTOPPED (*wstatp) && WSTOPSIG (*wstatp) == SIGTRAP) in linux_wait_for_lwp()
1451 if (WIFSTOPPED (*wstatp)) in linux_wait_for_lwp()
[all …]
/dports/devel/gdb/gdb-11.1/gdbserver/
H A Dlinux-low.h343 int *wstatp, int options);
352 int wait_for_event (ptid_t ptid, int *wstatp, int options);
H A Dlinux-low.cc2491 int *wstatp, int options) in wait_for_event_filtered() argument
2554 *wstatp = event_child->status_pending; in wait_for_event_filtered()
2593 ret = my_waitpid (-1, wstatp, options | WNOHANG); in wait_for_event_filtered()
2604 (long) ret, status_to_str (*wstatp).c_str ()); in wait_for_event_filtered()
2610 filter_event (ret, *wstatp); in wait_for_event_filtered()
2634 *wstatp = event_child->status_pending; in wait_for_event_filtered()
2691 linux_process_target::wait_for_event (ptid_t ptid, int *wstatp, int options) in wait_for_event() argument
2693 return wait_for_event_filtered (ptid, ptid, wstatp, options); in wait_for_event()
/dports/audio/xmcd/xmcd-3.3.2/common_d/
H A Dutil.c2376 waitret_t *wstatp in util_waitchild() argument
2427 while ((ret = WAITPID(cpid, wstatp, 0)) != cpid) { in util_waitchild()