Home | History | Annotate | Download | only in tests

Lines Matching refs:target_pid

164 static pid_t target_pid;
167 kill (target_pid, SIGKILL);
211 target_pid = fork ();
212 if (!target_pid)
236 ui = _UPT_create (target_pid);
296 ptrace (PTRACE_CONT, target_pid, 0, 0);
298 ptrace (PT_CONTINUE, target_pid, (caddr_t)1, 0);
306 ptrace (PTRACE_SINGLESTEP, target_pid, 0, pending_sig);
308 ptrace (PT_STEP, target_pid, (caddr_t)1, pending_sig);
320 ptrace (PTRACE_SYSCALL, target_pid, 0, pending_sig);
322 ptrace (PT_SYSCALL, target_pid, (caddr_t)1, pending_sig);
331 ptrace (PTRACE_SINGLESTEP, target_pid, 0, pending_sig);
333 ptrace (PT_STEP, target_pid, (caddr_t)1, pending_sig);
340 kill (target_pid, SIGKILL);