Index: gdb/darwin-nat.h |
diff --git a/gdb/darwin-nat.h b/gdb/darwin-nat.h |
index c74af1d3f3d99dc99080ddfec9b4ffcb7d20c063..6c892991070f25f0e9a432567d56eced2e4eda45 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 |
{ |