2012-02-20 Tristan Gingold <gingold@adacore.com>

* darwin-nat.h (enum darwin_msg_state): Add comments.
This commit is contained in:
Tristan Gingold 2012-02-20 09:42:34 +00:00
parent 6f1248943b
commit 637fd620a7
2 changed files with 15 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2012-02-20 Tristan Gingold <gingold@adacore.com>
* darwin-nat.h (enum darwin_msg_state): Add comments.
2012-02-20 Tristan Gingold <gingold@adacore.com>
* amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset

View File

@ -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
{