Skip to content

Commit

Permalink
ntdll: Increase kernel stack size.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Gofman authored and ivyl committed Feb 11, 2022
1 parent 730fee7 commit bdb21c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlls/ntdll/unix/unix_private.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,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 = 0x60000;
static const SIZE_T min_kernel_stack = 0x2000;
static const LONG teb_offset = 0x2000;

Expand Down

0 comments on commit bdb21c7

Please sign in to comment.