* 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-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.
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.
}
+/* 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)
}
}
+/* 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)
{