From 9b92e8c0114295f72aa34b849d700226e5aad509 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Wed, 9 Mar 2005 22:04:38 +0000 Subject: [PATCH] Added missing reply port for message B_DEBUG_MESSAGE_GET_WHY_STOPPED. Removed unnecessary alignment in debug_nub_set_cpu_state. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11632 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/os/kernel/debugger.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/os/kernel/debugger.h b/headers/os/kernel/debugger.h index 0cbc3b872a..bb40c7d4ff 100644 --- a/headers/os/kernel/debugger.h +++ b/headers/os/kernel/debugger.h @@ -198,6 +198,7 @@ typedef struct { // B_DEBUG_MESSAGE_GET_WHY_STOPPED typedef struct { + port_id reply_port; // port to send the reply to thread_id thread; // the thread } debug_nub_get_why_stopped; @@ -205,7 +206,6 @@ typedef struct { typedef struct { thread_id thread; // the thread - int32 align_to_double; // alignment debug_cpu_state cpu_state; // the new CPU state } debug_nub_set_cpu_state;