Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [PATCH] Fix PTRACE_EVENT_VFORKDONE -> PTRACE_EVENT_VFORK_DONE
@ 2004-11-08 15:20 Andreas Schwab
  2004-11-08 15:27 ` Daniel Jacobowitz
  0 siblings, 1 reply; 2+ messages in thread
From: Andreas Schwab @ 2004-11-08 15:20 UTC (permalink / raw)
  To: gdb-patches

The kernel header spells it differently.

Andreas.

2004-11-08  Andreas Schwab  <schwab@suse.de>

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

--- gdb/linux-nat.c	11 Oct 2004 10:39:50 +0200	1.15
+++ gdb/linux-nat.c	08 Nov 2004 15:33:15 +0100	
@@ -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);
 	    }

-- 
Andreas Schwab, SuSE Labs, schwab@suse.de
SuSE Linux AG, Maxfeldstraße 5, 90409 Nürnberg, Germany
Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2004-11-08 15:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-11-08 15:20 [PATCH] Fix PTRACE_EVENT_VFORKDONE -> PTRACE_EVENT_VFORK_DONE Andreas Schwab
2004-11-08 15:27 ` Daniel Jacobowitz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox