Skip to content

Commit

Permalink
[x86_64] Double kernel stack size in boot.asm to 8mb
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkw committed Jan 11, 2016
1 parent 00a3ffc commit b90cdc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/arch/x86_64/boot.asm
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,9 @@ pd_table:
page_table:
resb PAGE_TABLE_SIZE

; reserve 4M for the kernel stack space
; reserve 8M for the kernel stack space
STACK_BASE:
resb 4096
resb 4096 * 2
STACK_TOP:

; reserved space for the kernel heap
Expand Down

0 comments on commit b90cdc7

Please sign in to comment.