From c6794920344634961ce8c7d4d70e0b63b05cb30a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Sun, 12 Jan 2003 16:25:04 +0000 Subject: [PATCH] Added a queue to the team structure for the registered images. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2423 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/kernel/thread_types.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/headers/private/kernel/thread_types.h b/headers/private/kernel/thread_types.h index 1af151937e..c2f9b0b646 100644 --- a/headers/private/kernel/thread_types.h +++ b/headers/private/kernel/thread_types.h @@ -13,6 +13,7 @@ #include #include #include +#include #include @@ -47,6 +48,8 @@ enum team_state { #define THREAD_RETURN_EXIT 0x1 #define THREAD_RETURN_INTERRUPTED 0x2 +struct image; + // defined in image.c struct team { struct team *next; /* next team in the hash */ @@ -63,6 +66,7 @@ struct team { addr user_env_base; struct thread *main_thread; struct thread *thread_list; + struct quehead image_queue; struct arch_team arch_info; };