OSDN Git Service

From 2001-07-16 Rodney Brown <rbrown64@csc.com.au>:
authorcagney <cagney>
Thu, 19 Jul 2001 04:58:16 +0000 (04:58 +0000)
committercagney <cagney>
Thu, 19 Jul 2001 04:58:16 +0000 (04:58 +0000)
* infttrace.c (child_thread_alive): Fix gdb_tid typo.
* somsolib.c (no_shared_libraries): Provide stub.
* xcoffsolib.c (no_shared_libraries): Provide stub.

gdb/ChangeLog
gdb/infttrace.c
gdb/somsolib.c
gdb/xcoffsolib.c

index 6e7544a..a35da02 100644 (file)
@@ -1,3 +1,10 @@
+2001-07-19  Andrew Cagney  <ac131313@redhat.com>
+
+       From 2001-07-16 Rodney Brown <rbrown64@csc.com.au>:
+       * infttrace.c (child_thread_alive): Fix gdb_tid typo.
+       * somsolib.c (no_shared_libraries): Provide stub.
+       * xcoffsolib.c (no_shared_libraries): Provide stub.
+
 2001-07-18  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
 
        * Makefile.in (COMMON_OBS): Remove tui-file.o.
index ffcbd20..3c7cf95 100644 (file)
@@ -3585,7 +3585,7 @@ child_has_syscall_event (int pid, enum target_waitkind *kind, int *syscall_id)
 int
 child_thread_alive (ptid_t ptid)
 {
-  lwpid_t gdp_tid = PIDGET (ptid);
+  lwpid_t gdb_tid = PIDGET (ptid);
   lwpid_t tid;
 
   /* This spins down the lists twice.
index fe188ca..4b93fde 100644 (file)
@@ -1542,6 +1542,24 @@ som_solib_restart (void)
 }
 
 
+/* 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)
+{
+  /* FIXME */
+}
+
 
 void
 _initialize_som_solib (void)
index 867f102..d6f15e5 100644 (file)
@@ -157,6 +157,24 @@ sharedlibrary_command (char *pattern, int from_tty)
   }
 }
 
+/* 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)
+{
+  /* FIXME */
+}
+
 void
 _initialize_solib (void)
 {