aboutsummaryrefslogtreecommitdiff
path: root/gdb/thread.c
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2014-07-10 11:15:32 -0700
committerDoug Evans <dje@google.com>2014-07-10 11:15:32 -0700
commit1a76d598884a052dacd8feb49f1999e1a0d537f1 (patch)
treefc4e0537aea404328a0a3648bd6a3cce2b2ba8df /gdb/thread.c
parente7d17e71cdc10a2e81e454ce3b9637f1b2a587f2 (diff)
downloadgdb-1a76d598884a052dacd8feb49f1999e1a0d537f1.zip
gdb-1a76d598884a052dacd8feb49f1999e1a0d537f1.tar.gz
gdb-1a76d598884a052dacd8feb49f1999e1a0d537f1.tar.bz2
* gdbthread.h (any_running): Declare.
* thread.c (any_running): New function.
Diffstat (limited to 'gdb/thread.c')
-rw-r--r--gdb/thread.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/gdb/thread.c b/gdb/thread.c
index e25d563..532149d 100644
--- a/gdb/thread.c
+++ b/gdb/thread.c
@@ -648,6 +648,18 @@ 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;