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]

[PATCH] ChangeLog entries for the remove-symbol-file commits.


---

Hi,

Andrew pointed out that I should have updatded the ChangeLog files in
the commits of the remove-symbol-file series -- sorry for that. Is it ok
to fix the logs with this patch?

Thank you,

Nicolas


 gdb/ChangeLog           |   20 ++++++++++++++++++++
 gdb/doc/ChangeLog       |    6 ++++++
 gdb/testsuite/ChangeLog |    9 +++++++++
 3 files changed, 35 insertions(+), 0 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index d050c23..76c9321 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,23 @@
+2013-10-29  Nicolas Blanc  <nicolas.blanc@intel.com>
+
+	* exec.h (add_target_sections_of_objfile): New declaration.
+	* exec.c (add_target_sections_of_objfile): New function.
+	* symfile.c (add_symbol_file_command): Update current target sections.
+	(remove_symbol_file_command): New command.
+	(symfile_free_objfile): New function.
+	(_initialize_symfile): Register observer for free_objfile events.
+	* NEWS: Add description of the remove-symbol-file command.
+	* breakpoint.c (disable_breakpoints_in_freed_objfile): New function.
+	* objfiles.c (free_objfile): Notify free_objfile.
+	(is_addr_in_objfile): New function.
+	* objfiles.h (is_addr_in_objfile): New declaration.
+	* printcmd.c (clear_dangling_display_expressions): Act upon free_objfile
+	events instead of solib_unloaded events.
+	(_initialize_printcmd): Register observer for free_objfile instead
+	of solib_unloaded notifications.
+	* solib.c (remove_user_added_objfile): New function.
+	(_initialize_symfile): Add remove-symbol-file.
+
 2013-10-29  Yao Qi  <yao@codesourcery.com>
 
 	* auto-load.c (auto_load_pspace_data_cleanup): Get data from
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog
index c66a152..cb19554 100644
--- a/gdb/doc/ChangeLog
+++ b/gdb/doc/ChangeLog
@@ -1,3 +1,9 @@
+2013-10-29  Nicolas Blanc  <nicolas.blanc@intel.com>
+
+	* gdb.texinfo (Commands to Specify Files): Add description
+	of the remove-symbol-file command.
+	* observer.texi: New free_objfile event.
+
 2013-10-24  Pedro Alves  <palves@redhat.com>
 
 	* gdb.texinfo (Starting): Document set/show startup-with-shell.
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index e8f4a08..a9b097c 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,12 @@
+2013-10-29  Nicolas Blanc  <nicolas.blanc@intel.com>
+
+	* gdb.base/sym-file-lib.c: New file.
+	* gdb.base/sym-file-loader.c: New file.
+	* gdb.base/sym-file-loader.h: New file.
+	* gdb.base/sym-file-main.c: New file.
+	* gdb.base/sym-file.exp: New file.
+	* lib/gdb.exp (is_elf_target): New function.
+
 2013-10-28  Tom de Vries  <tom@codesourcery.com>
 
 	* gdb.arch/thumb2-it.S (it_8): Fix typo.
-- 
1.7.6.5


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