diff options
author | Yao Qi <yao@codesourcery.com> | 2014-06-18 22:03:20 +0800 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2014-06-19 20:15:06 +0800 |
commit | 78c164b00654c7f422694035bc0e1817f90c86b5 (patch) | |
tree | 5ddf9b79427eff8746e7a16e72403666c921a88f /gdb/thread.c | |
parent | f6e29b6ec0a4fd410ddaaddacf045c4cb4e890f2 (diff) | |
download | gdb-78c164b00654c7f422694035bc0e1817f90c86b5.zip gdb-78c164b00654c7f422694035bc0e1817f90c86b5.tar.gz gdb-78c164b00654c7f422694035bc0e1817f90c86b5.tar.bz2 |
Remove any_running
Function any_running isn't used. This patch is to remove it.
Rebuild GDB for linux and mingw.
gdb:
2014-06-19 Yao Qi <yao@codesourcery.com>
* gdbthread.h (any_running): Remove the declaration.
* thread.c (any_running): Remove.
Diffstat (limited to 'gdb/thread.c')
-rw-r--r-- | gdb/thread.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gdb/thread.c b/gdb/thread.c index 532149d..e25d563 100644 --- a/gdb/thread.c +++ b/gdb/thread.c @@ -648,18 +648,6 @@ is_running (ptid_t ptid) } int -any_running (void) -{ - struct thread_info *tp; - - for (tp = thread_list; tp; tp = tp->next) - if (tp->state == THREAD_RUNNING) - return 1; - - return 0; -} - -int is_executing (ptid_t ptid) { struct thread_info *tp; |