This is the mail archive of the gdb-patches@sources.redhat.com 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]

ChangeLog tweek


Michael, just FYI.

I tweeked the ChangeLogs per attached.  Don't forget that the ChangeLog 
reflects when the change is committed rather than when the change is 
first submitted.

I suspect the ChangeLog roll over is making a mess of a lot of pending 
changes :-(

enjoy,
Andrew
Index: ChangeLog
===================================================================
RCS file: /cvs/src/src/gdb/ChangeLog,v
retrieving revision 1.1974
diff -p -r1.1974 ChangeLog
*** ChangeLog	2002/01/05 22:06:38	1.1974
--- ChangeLog	2002/01/06 04:25:40
***************
*** 147,152 ****
--- 147,165 ----
  	* value.h: Ditto.
  	* scm-lang.c (scm_lookup_name): Ditto.
  
+ 2002-01-03  Michael Snyder  <msnyder@redhat.com>
+  
+ 	Abstract the functionality of iterating over mapped memory
+ 	regions into a general purpose iterator function.
+ 	* procfs.c (iterate_over_mappings): New function, general purpose 
+ 	iterator for memory sections.
+ 	(proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
+ 	(solib_mappings_callback): New function, callback for above.
+ 	(info_proc_mappings): Reimpliment using iterate_over_mappings.
+ 	(info_mappings_callback): New function, callback for above.
+ 
+ 	* procfs.c (proc_set_watchpoint): Add cast to suppress warning.
+ 
  2002-01-01  Mark Kettenis  <kettenis@gnu.org>
  
  	* i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
Index: ChangeLog-2001
===================================================================
RCS file: /cvs/src/src/gdb/ChangeLog-2001,v
retrieving revision 1.2
diff -p -r1.2 ChangeLog-2001
*** ChangeLog-2001	2002/01/03 20:50:24	1.2
--- ChangeLog-2001	2002/01/06 04:25:52
***************
*** 27,32 ****
--- 27,39 ----
          * ppc-tdep.h (struct gdbarch_tdep): Add altivec regnum fields.
          (altivec_register_p): Export.
  
+ 2001-12-29  Mark Kettenis  <kettenis@gnu.org>
+ 
+ 	* i386bsd-nat.c (reg_offset): Fix typo.
+ 
+ 	* i386-tdep.c (i386_push_dummy_frame): Don't write back the
+ 	modified frame pointer until the old frame pointer has been saved.
+ 
  2001-12-30  Andrew Cagney  <ac131313@redhat.com>
  
  	* arch-utils.c (initialize_current_architecture): Test byte_order
***************
*** 36,61 ****
  	(verify_gdbarch, gdbarch_update_p): Test byte_order against
  	BFD_ENDIAN_UNKNOWN.
  	* gdbarch.h, gdbarch.c: Re-generate.
- 
- 2001-12-29  Mark Kettenis  <kettenis@gnu.org>
- 
- 	* i386bsd-nat.c (reg_offset): Fix typo.
- 
- 	* i386-tdep.c (i386_push_dummy_frame): Don't write back the
- 	modified frame pointer until the old frame pointer has been saved.
- 
- 2001-12-28  Michael Snyder  <msnyder@redhat.com>
- 
- 	Abstract the functionality of iterating over mapped memory
- 	regions into a general purpose iterator function.
- 	* procfs.c (iterate_over_mappings): New function, general purpose 
- 	iterator for memory sections.
- 	(proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
- 	(solib_mappings_callback): New function, callback for above.
- 	(info_proc_mappings): Reimpliment using iterate_over_mappings.
- 	(info_mappings_callback): New function, callback for above.
- 
- 	* procfs.c (proc_set_watchpoint): Add cast to suppress warning.
  
  2001-12-27  Michael Snyder  <msnyder@redhat.com>
  
--- 43,48 ----

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