Lines Matching refs: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)
293 pid_t pid = waitpid (child, &status, 0);
294 assert (pid == child);
310 long l = ptrace (PTRACE_GETREGS, child, NULL, &user_regs);
312 report_module (dwfl, child, user_regs.rip);
314 bool ok = dwfl_attach_state (dwfl, EM_NONE, child, &callbacks, NULL);
322 kill (child, SIGKILL);
323 pid = waitpid (child, &status, 0);
324 assert (pid == child);