summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@vmware.com>2001-05-14 18:45:45 +0000
committerMichael Snyder <msnyder@vmware.com>2001-05-14 18:45:45 +0000
commitcb0ba49e37b824e23fe9ff24f07c008e74a6a382 (patch)
tree8cbc3f3b780c38d682d808535b60787dd7e1ac82
parent2644f3936c09e5883f8547c6b577fec9dd49b9a9 (diff)
downloadbinutils-gdb-cb0ba49e37b824e23fe9ff24f07c008e74a6a382.tar.gz
2001-05-14 Michael Snyder <msnyder@redhat.com>
* solib.c, solib.h: Add comment for function no_shared_libraries.
-rw-r--r--gdb/ChangeLog1
-rw-r--r--gdb/solib.c12
-rw-r--r--gdb/solib.h2
3 files changed, 15 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 101954b58ed..5c88973dd80 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,6 @@
2001-05-14 Michael Snyder <msnyder@redhat.com>
+ * solib.c, solib.h: Add comment for function no_shared_libraries.
* remote.c (remote_write_bytes): Set nr_bytes to return value of
bin2hex.
diff --git a/gdb/solib.c b/gdb/solib.c
index 8da44df11a9..370f814e435 100644
--- a/gdb/solib.c
+++ b/gdb/solib.c
@@ -809,6 +809,18 @@ sharedlibrary_command (char *args, int from_tty)
solib_add (args, from_tty, (struct target_ops *) 0);
}
+/* LOCAL FUNCTION
+
+ no_shared_libraries -- handle command to explicitly discard symbols
+ from shared libraries.
+
+ DESCRIPTION
+
+ Implements the command "nosharedlibrary", which discards symbols
+ that have been auto-loaded from shared libraries. Symbols from
+ shared libraries that were added by explicit request of the user
+ are not discarded. Also called from remote.c. */
+
void
no_shared_libraries (char *ignored, int from_tty)
{
diff --git a/gdb/solib.h b/gdb/solib.h
index 2da8460150d..56a4a400cf8 100644
--- a/gdb/solib.h
+++ b/gdb/solib.h
@@ -194,4 +194,6 @@ extern char *solib_address (CORE_ADDR); /* solib.c */
extern int in_solib_dynsym_resolve_code (CORE_ADDR); /* solib.c */
+/* Discard symbols that were auto-loaded from shared libraries. */
+
extern void no_shared_libraries (char *ignored, int from_tty);