Home
last modified time | relevance | path

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

/external/strace/
Dstrace.c125 static int post_attach_sigstop = TCB_IGNORE_ONE_SIGSTOP;
128 # define post_attach_sigstop TCB_IGNORE_ONE_SIGSTOP
853 if (tcp->flags & TCB_IGNORE_ONE_SIGSTOP) in detach()
2333 if (sig == SIGSTOP && (tcp->flags & TCB_IGNORE_ONE_SIGSTOP)) { in next_event()
2335 tcp->flags &= ~TCB_IGNORE_ONE_SIGSTOP; in next_event()
Ddefs.h232 #define TCB_IGNORE_ONE_SIGSTOP 0x02 /* Next SIGSTOP is to be ignored */ macro
DChangeLog37465 * strace.c (detach): If TCB_IGNORE_ONE_SIGSTOP is set,
42503 We do it by adding a new bit, TCB_IGNORE_ONE_SIGSTOP, and treating
42504 TCB_STARTUP and TCB_IGNORE_ONE_SIGSTOP as two slightly different things.
42506 * defs.h: Add a new flag bit, TCB_IGNORE_ONE_SIGSTOP.
42507 * process.c (internal_fork): Set TCB_IGNORE_ONE_SIGSTOP on a newly added child.
42508 * strace.c (startup_attach): Set TCB_IGNORE_ONE_SIGSTOP after attach.
42511 (startup_child): Set TCB_IGNORE_ONE_SIGSTOP after attach, _if needed_.
42513 (detach): Perform anti-SIGSTOP dance only if TCB_IGNORE_ONE_SIGSTOP is set,
42515 (trace): Set TCB_IGNORE_ONE_SIGSTOP after attach.
42517 Clear TCB_IGNORE_ONE_SIGSTOP when SIGSTOP is seen.