* linux-nat.c (PTRACE_EVENT_VFORK_DONE): Renamed from

PTRACE_EVENT_VFORKDONE.
	(child_follow_fork): Adjust.
This commit is contained in:
Andreas Schwab 2004-11-08 16:05:12 +00:00
parent 5c26072a12
commit c874c7fcd5
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2004-11-08 Andreas Schwab <schwab@suse.de>
* linux-nat.c (PTRACE_EVENT_VFORK_DONE): Renamed from
PTRACE_EVENT_VFORKDONE.
(child_follow_fork): Adjust.
2004-11-08 Andrew Cagney <cagney@gnu.org>
* README: Refer to 6.3, not 6.2, update directory listing droppng

View File

@ -69,7 +69,7 @@
#define PTRACE_EVENT_VFORK 2
#define PTRACE_EVENT_CLONE 3
#define PTRACE_EVENT_EXEC 4
#define PTRACE_EVENT_VFORKDONE 5
#define PTRACE_EVENT_VFORK_DONE 5
#define PTRACE_EVENT_EXIT 6
#endif /* PTRACE_EVENT_FORK */
@ -314,7 +314,7 @@ child_follow_fork (int follow_child)
ptrace (PTRACE_CONT, parent_pid, 0, 0);
waitpid (parent_pid, &status, __WALL);
if ((status >> 16) != PTRACE_EVENT_VFORKDONE)
if ((status >> 16) != PTRACE_EVENT_VFORK_DONE)
warning ("Unexpected waitpid result %06x when waiting for "
"vfork-done", status);
}