From: Andreas Schwab Date: Mon, 8 Nov 2004 16:05:12 +0000 (+0000) Subject: * linux-nat.c (PTRACE_EVENT_VFORK_DONE): Renamed from X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c874c7fcd5208088b240eb4570661267fd7658e8;p=binutils-gdb.git * linux-nat.c (PTRACE_EVENT_VFORK_DONE): Renamed from PTRACE_EVENT_VFORKDONE. (child_follow_fork): Adjust. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8cf445ac266..22a06a162ca 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 9c40f772e64..1300637b10f 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); }