Home | History | Annotate | Download | only in tests

Lines Matching defs:tracer

221   raise(SIGSTOP);  // Synchronize with the tracer, let it set the watchpoint.
255 raise(SIGSTOP); // Synchronize with the tracer, let it set the watchpoint.
294 raise(SIGSTOP); // Synchronize with the tracer, let it set the breakpoint.
383 pid_t tracer = -1;
402 // Allow the tracer process, which is not a direct process ancestor, to
430 tracer = fork();
431 ASSERT_NE(-1, tracer);
432 if (tracer == 0) {
442 if (tracer == -1) {
443 errx(1, "tracer not started");
447 pid_t rc = TEMP_FAILURE_RETRY(waitpid(tracer, &result, 0));
448 if (rc != tracer) {
460 printf("tracer failed\n");
516 // Make sure that the worker doesn't exit before the tracer stops tracing.