ntdll: Increase kernel stack size.

Signed-off-by: Paul Gofman <pgofman@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Paul Gofman 2022-04-11 13:26:31 +03:00 committed by Alexandre Julliard
parent 66a639e96d
commit dfd5f109fb
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ static const SIZE_T page_size = 0x1000;
static const SIZE_T teb_size = 0x3800; /* TEB64 + TEB32 + debug info */
static const SIZE_T signal_stack_mask = 0xffff;
static const SIZE_T signal_stack_size = 0x10000 - 0x3800;
static const SIZE_T kernel_stack_size = 0x20000;
static const SIZE_T kernel_stack_size = 0x100000;
static const SIZE_T min_kernel_stack = 0x2000;
static const LONG teb_offset = 0x2000;