* thread-db.c (disable_thread_signals): Remove unused function.
authorDaniel Jacobowitz <drow@false.org>
Sun, 29 Feb 2004 02:39:47 +0000 (02:39 +0000)
committerDaniel Jacobowitz <drow@false.org>
Sun, 29 Feb 2004 02:39:47 +0000 (02:39 +0000)
gdb/ChangeLog
gdb/thread-db.c

index 9f19f2a..dfd8145 100644 (file)
@@ -1,3 +1,7 @@
+2004-02-28  Daniel Jacobowitz  <drow@mvista.com>
+
+       * thread-db.c (disable_thread_signals): Remove unused function.
+
 2004-02-28  Andrew Cagney  <cagney@redhat.com>
 
        GDB 6.1 branch created.
index b135c39..804f48a 100644 (file)
@@ -585,27 +585,6 @@ check_thread_signals (void)
 }
 
 static void
-disable_thread_signals (void)
-{
-#ifdef GET_THREAD_SIGNALS
-  if (thread_signals)
-    {
-      int i;
-
-      for (i = 1; i < NSIG; i++)
-       {
-         if (sigismember (&thread_stop_set, i))
-           signal_stop_update (target_signal_from_host (i), 1);
-         if (sigismember (&thread_print_set, i))
-           signal_print_update (target_signal_from_host (i), 1);
-       }
-
-      thread_signals = 0;
-    }
-#endif
-}
-
-static void
 thread_db_new_objfile (struct objfile *objfile)
 {
   td_err_e err;