Lines Matching defs:child
73 pid_t child = dwfl_pid (dwfl);
76 long l = ptrace (PTRACE_PEEKDATA, child, (void *) (uintptr_t) addr, NULL);
142 report_module (Dwfl *dwfl, pid_t child, Dwarf_Addr addr)
145 char *long_name = maps_lookup (child, addr, &base);
170 pid_t child = dwfl_pid (dwfl_thread_dwfl (thread));
173 long l = ptrace (PTRACE_GETREGS, child, NULL, &user_regs);
270 pid_t child = fork ();
271 switch (child)
287 pid_t pid = waitpid (child, &status, 0);
289 assert (pid == child);
305 long l = ptrace (PTRACE_GETREGS, child, NULL, &user_regs);
308 report_module (dwfl, child, user_regs.rip);
310 bool ok = dwfl_attach_state (dwfl, EM_NONE, child, &callbacks, NULL);
318 kill (child, SIGKILL);
319 pid = waitpid (child, &status, 0);
321 assert (pid == child);