From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11796 invoked by alias); 23 May 2013 16:16:26 -0000 Mailing-List: contact archer-commits-help@sourceware.org; run by ezmlm Sender: Precedence: bulk List-Post: List-Help: List-Subscribe: Received: (qmail 11778 invoked by uid 9364); 23 May 2013 16:16:25 -0000 Date: Thu, 23 May 2013 16:16:00 -0000 Message-ID: <20130523161625.11746.qmail@sourceware.org> From: gary@sourceware.org To: archer-commits@sourceware.org Subject: [SCM] gbenson/rtld-probes: Damn! X-Git-Refname: refs/heads/gbenson/rtld-probes X-Git-Reftype: branch X-Git-Oldrev: d01bc1176b596cc0deb3caac49efcd08e439fccb X-Git-Newrev: 6161aaf67931a1f307973ef8d1c533e76701533e X-SW-Source: 2013-q2/txt/msg00086.txt.bz2 List-Id: The branch, gbenson/rtld-probes has been updated via 6161aaf67931a1f307973ef8d1c533e76701533e (commit) via 1faad5bee13ecee2c804ffd0141b902217a64468 (commit) from d01bc1176b596cc0deb3caac49efcd08e439fccb (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email. - Log ----------------------------------------------------------------- commit 6161aaf67931a1f307973ef8d1c533e76701533e Author: Gary Benson Date: Thu May 23 17:16:17 2013 +0100 Damn! commit 1faad5bee13ecee2c804ffd0141b902217a64468 Author: Gary Benson Date: Thu May 23 14:05:53 2013 +0100 Another Jan change ----------------------------------------------------------------------- Summary of changes: gdb/objfiles.h | 10 +++++----- gdb/solib.c | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) First 500 lines of diff: diff --git a/gdb/objfiles.h b/gdb/objfiles.h index a750023..adb1ef8 100644 --- a/gdb/objfiles.h +++ b/gdb/objfiles.h @@ -501,12 +501,12 @@ extern int in_plt_section (CORE_ADDR, char *); modules. */ DECLARE_REGISTRY(objfile); -/* In normal use, the section map will be rebuilt by FIND_PC_SECTION +/* In normal use, the section map will be rebuilt by find_pc_section if objfiles have been added, removed or relocated since it was last - called. Calling INHIBIT_SECTION_MAP_UPDATES will inhibit this - behavior until RESUME_SECTION_MAP_UPDATES is called. If you call - INHIBIT_SECTION_MAP_UPDATES you must ensure that every call to - FIND_PC_SECTION in the inhibited region relates to a section that + called. Calling inhibit_section_map_updates will inhibit this + behavior until resume_section_map_updates is called. If you call + inhibit_section_map_updates you must ensure that every call to + find_pc_section in the inhibited region relates to a section that is already in the section map and has not since been removed or relocated. */ extern void inhibit_section_map_updates (struct program_space *pspace); diff --git a/gdb/solib.c b/gdb/solib.c index 98d6670..763b93c 100644 --- a/gdb/solib.c +++ b/gdb/solib.c @@ -1213,7 +1213,7 @@ no_shared_libraries (char *ignored, int from_tty) void update_solib_breakpoints (void) { - struct target_so_ops *ops = solib_ops (target_gdbarch ()); + const struct target_so_ops *ops = solib_ops (target_gdbarch ()); if (ops->update_breakpoints != NULL) ops->update_breakpoints (); @@ -1224,7 +1224,7 @@ update_solib_breakpoints (void) void handle_solib_event (void) { - struct target_so_ops *ops = solib_ops (target_gdbarch ()); + const struct target_so_ops *ops = solib_ops (target_gdbarch ()); if (ops->handle_event != NULL) ops->handle_event (); hooks/post-receive -- Repository for Project Archer.