* 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 9f19f2a833697c757a977048692eb2378e030d13..dfd8145295af8704b4ba3131f88f6b56710e5b6e 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 b135c39f160aba5b1c79da818da57caf8dfefc24..804f48a807384d5e7d81a4665f424ff3e1997e44 100644 (file)
@@ -584,27 +584,6 @@ check_thread_signals (void)
 #endif
 }
 
-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)
 {