Lines Matching defs:child
75 pid_t child = dwfl_pid (dwfl);
78 long l = ptrace (PTRACE_PEEKDATA, child, (void *) (uintptr_t) addr, NULL);
148 report_module (Dwfl *dwfl, pid_t child, Dwarf_Addr addr)
151 char *long_name = maps_lookup (child, addr, &base);
178 pid_t child = dwfl_pid (dwfl_thread_dwfl (thread));
181 long l = ptrace (PTRACE_GETREGS, child, NULL, &user_regs);
278 pid_t child = fork ();
279 switch (child)
294 pid_t pid = waitpid (child, &status, 0);
295 assert (pid == child);
311 long l = ptrace (PTRACE_GETREGS, child, NULL, &user_regs);
313 report_module (dwfl, child, user_regs.rip);
315 bool ok = dwfl_attach_state (dwfl, EM_NONE, child, &callbacks, NULL);
323 kill (child, SIGKILL);
324 pid = waitpid (child, &status, 0);
325 assert (pid == child);