diff options
author | Doug Evans <dje@google.com> | 2014-07-10 12:30:05 -0700 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2014-07-10 12:30:05 -0700 |
commit | e86c23a851f8b20d50e67217750853b8c89bbf55 (patch) | |
tree | a32c837ab903d3ef31b9ec13f8251e12d40bc4df /gdb/thread.c | |
parent | 1a76d598884a052dacd8feb49f1999e1a0d537f1 (diff) | |
download | gdb-e86c23a851f8b20d50e67217750853b8c89bbf55.zip gdb-e86c23a851f8b20d50e67217750853b8c89bbf55.tar.gz gdb-e86c23a851f8b20d50e67217750853b8c89bbf55.tar.bz2 |
Revert gdbthread.h (any_running): Declare.
Not properly marked as 1/2.
This reverts commit 1a76d598884a052dacd8feb49f1999e1a0d537f1.
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; |