On 06/05/2014 08:47 AM, Hui Zhu wrote:
2014-06-05 Hui Zhu <hui@codesourcery.com>
* common/linux-ptrace.c (linux_disable_event_reporting): New.
* common/linux-ptrace.h (linux_disable_event_reporting): New extern.
You're not adding an extern to an existing function, but adding new declaration
that happens to declare a function with extern linkage.
* linux-nat.c (linux_child_follow_fork): do a single step before
detach
Capitalization, and full stop both missing. Write instead:
* common/linux-ptrace.c (linux_disable_event_reporting): New function.
* common/linux-ptrace.h (linux_disable_event_reporting): New declaration.
* linux-nat.c (linux_child_follow_fork): Do a single step before
detach.
+ if (ptrace (PTRACE_SINGLESTEP, child_pid, 0, 0) < 0)
+ perror_with_name (_("Couldn't do single step"));
+ if (my_waitpid (child_pid, &status, 0) < 0)
+ perror_with_name (_("Couldn't wait vfork process"));
+ }
+
+ ptrace (PTRACE_DETACH, child_pid, 0, WSTOPSIG (status));
The child could have exited with that single-step. So:
if (WIFSTOPPED (status))
ptrace (PTRACE_DETACH, child_pid, 0, WSTOPSIG (status));