From 2130a091c39f05bdda63f11413b3f6d9f0ac3998 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Mon, 4 Oct 2004 22:37:44 +0000 Subject: [PATCH] Added field for the size of the userland stack; a userland stack is allowed to have any stack size, it's not a fixed value (well, at least that's what will happen :)). git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9189 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/kernel/thread_types.h | 1 + 1 file changed, 1 insertion(+) diff --git a/headers/private/kernel/thread_types.h b/headers/private/kernel/thread_types.h index 86774486ff..9a30aedd15 100644 --- a/headers/private/kernel/thread_types.h +++ b/headers/private/kernel/thread_types.h @@ -130,6 +130,7 @@ struct thread { addr_t kernel_stack_base; region_id user_stack_region_id; addr_t user_stack_base; + size_t user_stack_size; addr_t user_local_storage; // usually allocated at the safe side of the stack