aboutsummaryrefslogtreecommitdiff
path: root/gdb/ChangeLog
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2020-10-29 15:04:33 -0600
committerTom Tromey <tom@tromey.com>2020-10-29 15:04:39 -0600
commit2a3f84af539b4dc5473c44b0a01c1bcdfc7a1300 (patch)
tree480cc0467b823b8acc2d398f44e1125bb0edc746 /gdb/ChangeLog
parent004eecfdc7d9b47e8364719667c64edb22d12d44 (diff)
downloadgdb-2a3f84af539b4dc5473c44b0a01c1bcdfc7a1300.zip
gdb-2a3f84af539b4dc5473c44b0a01c1bcdfc7a1300.tar.gz
gdb-2a3f84af539b4dc5473c44b0a01c1bcdfc7a1300.tar.bz2
Change remove_target_sections to method on program_space
This changes remove_target_sections to be a method on program_space. This makes sense because this function manipulates data that is attached to the program space. gdb/ChangeLog 2020-10-29 Tom Tromey <tom@tromey.com> * progspace.h (struct program_space) <remove_target_sections>: Declare. * exec.c (program_space::remove_target_sections): Now a method. * exec.h (remove_target_sections): Don't declare.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r--gdb/ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 1286d57..ce9c193 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,12 @@
2020-10-29 Tom Tromey <tom@tromey.com>
+ * progspace.h (struct program_space) <remove_target_sections>:
+ Declare.
+ * exec.c (program_space::remove_target_sections): Now a method.
+ * exec.h (remove_target_sections): Don't declare.
+
+2020-10-29 Tom Tromey <tom@tromey.com>
+
* inferior.c (delete_inferior): Update.
* progspace.c (program_space::empty): Rename from
program_space_empty_p. Return bool.