]> Git Repo - binutils.git/blobdiff - gdb/thread.c
import gdb-19990504 snapshot
[binutils.git] / gdb / thread.c
index 6a7ab092d7caf0e2aef44c2744a5f55adf3cb378..9f68547636df45190ddd2231078e2e7d85432ddb 100644 (file)
@@ -80,7 +80,7 @@ void _initialize_thread PARAMS ((void));
 /* Prototypes for local functions. */
 
 #if !defined(FIND_NEW_THREADS)
-#define FIND_NEW_THREADS target_find_new_threads
+#define FIND_NEW_THREADS local_find_new_threads
 #endif  
                           
 static struct thread_info *thread_list = NULL;
@@ -104,8 +104,8 @@ static void prune_threads PARAMS ((void));
 
 static struct target_thread_vector *target_thread_functions;
 
-int
-target_find_new_threads ()
+static int
+local_find_new_threads ()
 {
   int retval = 0;
   if (target_thread_functions &&
@@ -452,9 +452,7 @@ info_threads_command (arg, from_tty)
   if (!target_has_stack) error ("No stack.");
 
   prune_threads ();
-#if defined(FIND_NEW_THREADS)
-  FIND_NEW_THREADS ();
-#endif
+  target_find_new_threads ();
   current_pid = inferior_pid;
   for (tp = thread_list; tp; tp = tp->next)
     {
@@ -698,7 +696,6 @@ void
 _initialize_thread ()
 {
   static struct cmd_list_element *thread_apply_list = NULL;
-  extern struct cmd_list_element *cmdlist;
 
   add_info ("threads", info_threads_command,
            "IDs of currently known threads.");
This page took 0.024732 seconds and 4 git commands to generate.