Command B_DEBUG_MESSAGE_GET_WHY_STOPPED supports a reply port now.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11633 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2005-03-09 22:05:43 +00:00
parent 9b92e8c011
commit 2562e5185c
2 changed files with 14 additions and 2 deletions
+5
View File
@@ -94,12 +94,17 @@ typedef struct {
bool single_step;
} debugged_thread_continue;
typedef struct {
port_id reply_port;
} debugged_thread_get_why_stopped;
typedef struct {
debug_cpu_state cpu_state;
} debugged_thread_set_cpu_state;
typedef union {
debugged_thread_continue continue_thread;
debugged_thread_get_why_stopped get_why_stopped;
debugged_thread_set_cpu_state set_cpu_state;
} debugged_thread_message_data;