diff options
author | Doug Evans <dje@google.com> | 2014-07-10 11:15:32 -0700 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2014-07-10 11:15:32 -0700 |
commit | 1a76d598884a052dacd8feb49f1999e1a0d537f1 (patch) | |
tree | fc4e0537aea404328a0a3648bd6a3cce2b2ba8df /gdb/gdbthread.h | |
parent | e7d17e71cdc10a2e81e454ce3b9637f1b2a587f2 (diff) | |
download | gdb-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/gdbthread.h')
-rw-r--r-- | gdb/gdbthread.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/gdbthread.h b/gdb/gdbthread.h index 9ef74cd..ca52983 100644 --- a/gdb/gdbthread.h +++ b/gdb/gdbthread.h @@ -363,6 +363,9 @@ extern int is_exited (ptid_t ptid); /* In the frontend's perpective, is this thread stopped? */ extern int is_stopped (ptid_t ptid); +/* In the frontend's perpective is there any thread running? */ +extern int any_running (void); + /* Marks thread PTID as executing, or not. If ptid_get_pid (PTID) is -1, marks all threads. |