aboutsummaryrefslogtreecommitdiff
path: root/gdb/darwin-nat.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/darwin-nat.h')
-rw-r--r--gdb/darwin-nat.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/gdb/darwin-nat.h b/gdb/darwin-nat.h
index c74af1d..6c89299 100644
--- a/gdb/darwin-nat.h
+++ b/gdb/darwin-nat.h
@@ -61,7 +61,17 @@ struct darwin_exception_msg
integer_t ex_data[2];
};
-enum darwin_msg_state { DARWIN_RUNNING, DARWIN_STOPPED, DARWIN_MESSAGE };
+enum darwin_msg_state
+{
+ /* The thread is running. */
+ DARWIN_RUNNING,
+
+ /* The thread is stopped. */
+ DARWIN_STOPPED,
+
+ /* The thread has sent a message and waits for a reply. */
+ DARWIN_MESSAGE
+};
struct private_thread_info
{