* thread-db.c (disable_thread_signals): Remove unused function.

This commit is contained in:
Daniel Jacobowitz 2004-02-29 02:39:47 +00:00
parent 7a3ccebe9b
commit 2227a3c550
2 changed files with 4 additions and 21 deletions

View 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.

View 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)
{