Home | History | Annotate | Download | only in sys

Lines Matching defs:tracer

268 	    "does not stop tracer from catching this raised signal");	\
361 "stops tracer from catching this raised signal"); \
643 * notifies the tracer _before_ unmasking SIGFPE and removing
649 * the special case of a traced process. So when the tracer is
705 "PT_TRACE_ME is delivered to its tracer"); \
865 * notifies the tracer _before_ changing the disposition and
871 * special case of a traced process. So when the tracer is
927 "PT_TRACE_ME is delivered to its tracer"); \
1015 "Verify that a signal " #sig " emitted by a tracer to a child is " \
1113 "Verify that a signal " #sig " emitted by a tracer to a child is " \
1203 "Verify that a signal " #sig " emitted by a tracer to a child is " \
1339 "Verify that a signal " #sig " emitted by a tracer to a child is " \
1789 pid_t tracee, tracer, wpid;
1866 tracer = atf_utils_fork();
1867 if (tracer == 0) {
1869 tracer = atf_utils_fork();
1870 if (tracer != 0)
1898 /* Inform parent that tracer has attached to tracee */
1899 CHILD_TO_PARENT("tracer ready", parent_tracer, msg);
2045 /* Inform parent that tracer is exiting normally */
2046 CHILD_TO_PARENT("tracer done", parent_tracer, msg);
2048 DPRINTF("Before exiting of the tracer process\n");
2052 DPRINTF("Wait for the tracer process (direct child) to exit "
2055 wpid = TWAIT_GENERIC(tracer, &status, 0), tracer);
2064 DPRINTF("Wait for the tracer to attach to the tracee\n");
2065 PARENT_FROM_CHILD("tracer ready", parent_tracer, msg);
2070 DPRINTF("Resume the tracer and let it detect crashed tracee\n");
2079 DPRINTF("Await normal exit of tracer\n");
2080 PARENT_FROM_CHILD("tracer done", parent_tracer, msg);
2091 "Assert that an unrelated tracer sees crash signal from " \
2112 "Assert that an unrelated tracer sees crash signal from " \
2138 "Assert that an unrelated tracer sees crash signal from " \
2166 "Verify that masking single unrelated signal does not stop tracer "