Added userland debugging support structures to thread and team structures.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11315 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2005-02-10 03:00:52 +00:00
parent f19279abda
commit 032fea39cb

View File

@ -12,6 +12,7 @@
#include <smp.h>
#include <signal.h>
#include <timer.h>
#include <user_debugger.h>
#include <util/list.h>
#include <arch/thread_struct.h>
@ -111,6 +112,8 @@ struct team {
struct list image_list;
struct arch_team arch_info;
struct team_debug_info debug_info;
bigtime_t dead_threads_kernel_time;
bigtime_t dead_threads_user_time;
};
@ -167,6 +170,8 @@ struct thread {
struct list waiters;
} exit;
struct thread_debug_info debug_info;
// stack
area_id kernel_stack_area;
addr_t kernel_stack_base;