Home
last modified time | relevance | path

Searched refs:TCB_IGNORE_ONE_SIGSTOP (Results 1 – 3 of 3) sorted by relevance

/external/strace/
Dstrace.c127 static int post_attach_sigstop = TCB_IGNORE_ONE_SIGSTOP;
883 if (tcp->flags & TCB_IGNORE_ONE_SIGSTOP) in detach()
2396 if (sig == SIGSTOP && (tcp->flags & TCB_IGNORE_ONE_SIGSTOP)) { in next_event()
2398 tcp->flags &= ~TCB_IGNORE_ONE_SIGSTOP; in next_event()
Ddefs.h252 #define TCB_IGNORE_ONE_SIGSTOP 0x02 /* Next SIGSTOP is to be ignored */ macro
DChangeLog45027 * strace.c (detach): If TCB_IGNORE_ONE_SIGSTOP is set,
50065 We do it by adding a new bit, TCB_IGNORE_ONE_SIGSTOP, and treating
50066 TCB_STARTUP and TCB_IGNORE_ONE_SIGSTOP as two slightly different things.
50068 * defs.h: Add a new flag bit, TCB_IGNORE_ONE_SIGSTOP.
50069 * process.c (internal_fork): Set TCB_IGNORE_ONE_SIGSTOP on a newly added child.
50070 * strace.c (startup_attach): Set TCB_IGNORE_ONE_SIGSTOP after attach.
50073 (startup_child): Set TCB_IGNORE_ONE_SIGSTOP after attach, _if needed_.
50075 (detach): Perform anti-SIGSTOP dance only if TCB_IGNORE_ONE_SIGSTOP is set,
50077 (trace): Set TCB_IGNORE_ONE_SIGSTOP after attach.
50079 Clear TCB_IGNORE_ONE_SIGSTOP when SIGSTOP is seen.