This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: eliminate pending_follow.execd_pathname.


I've applied this follow up patch to clean up comments.

-- 
Pedro Alves

Index: ChangeLog
===================================================================
RCS file: /cvs/src/src/gdb/ChangeLog,v
retrieving revision 1.10478
diff -u -p -r1.10478 ChangeLog
--- ChangeLog	17 May 2009 16:31:18 -0000	1.10478
+++ ChangeLog	17 May 2009 16:45:23 -0000
@@ -7,6 +7,8 @@
 	event copy instead.  Release `execd_pathname' once done with
 	handling the event.
 
+	* infrun.c (pending_follow): Remove mention of exec events.
+
 2009-05-17  Hui Zhu  <teawater@gmail.com>
 
 	* i386-tdep.c (i386_process_record): Make it extern.
Index: infrun.c
===================================================================
RCS file: /cvs/src/src/gdb/infrun.c,v
retrieving revision 1.373
diff -u -p -r1.373 infrun.c
--- infrun.c	17 May 2009 16:31:21 -0000	1.373
+++ infrun.c	17 May 2009 16:45:24 -0000
@@ -255,10 +255,9 @@ void init_thread_stepping_state (struct 
 
 void init_infwait_state (void);
 
-/* This is used to remember when a fork, vfork or exec event
-   was caught by a catchpoint, and thus the event is to be
-   followed at the next resume of the inferior, and not
-   immediately. */
+/* This is used to remember when a fork or vfork event was caught by a
+   catchpoint, and thus the event is to be followed at the next resume
+   of the inferior, and not immediately.  */
 static struct
 {
   enum target_waitkind kind;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]