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; };