diff options
Diffstat (limited to 'gdb/target/waitstatus.h')
-rw-r--r-- | gdb/target/waitstatus.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gdb/target/waitstatus.h b/gdb/target/waitstatus.h index ffaddc1..2e39344 100644 --- a/gdb/target/waitstatus.h +++ b/gdb/target/waitstatus.h @@ -92,7 +92,13 @@ enum target_waitkind TARGET_WAITKIND_NO_HISTORY, /* There are no resumed children left in the program. */ - TARGET_WAITKIND_NO_RESUMED + TARGET_WAITKIND_NO_RESUMED, + + /* The thread was created. */ + TARGET_WAITKIND_THREAD_CREATED, + + /* The thread has exited. The exit status is in value.integer. */ + TARGET_WAITKIND_THREAD_EXITED, }; struct target_waitstatus |