From c874c7fcd5208088b240eb4570661267fd7658e8 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 8 Nov 2004 16:05:12 +0000 Subject: [PATCH] * linux-nat.c (PTRACE_EVENT_VFORK_DONE): Renamed from PTRACE_EVENT_VFORKDONE. (child_follow_fork): Adjust. --- gdb/ChangeLog | 6 ++++++ gdb/linux-nat.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8cf445a..22a06a1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2004-11-08 Andreas Schwab + + * linux-nat.c (PTRACE_EVENT_VFORK_DONE): Renamed from + PTRACE_EVENT_VFORKDONE. + (child_follow_fork): Adjust. + 2004-11-08 Andrew Cagney * README: Refer to 6.3, not 6.2, update directory listing droppng diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c index 9c40f77..1300637 100644 --- a/gdb/linux-nat.c +++ b/gdb/linux-nat.c @@ -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); } -- 2.7.4