1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00

increase default size of the user-level stack

This commit is contained in:
Stefan Lankes 2015-09-12 17:11:13 +02:00
parent 18c563028e
commit ab32eb726b

View file

@ -40,7 +40,7 @@ extern "C" {
#define VIDEO_MEM_ADDR 0xB8000 /* the video memory address */
#define CACHE_LINE 64
#define KERNEL_STACK_SIZE (8<<10) /* 8 KiB */
#define DEFAULT_STACK_SIZE (16*1024) /* 16 KiB */
#define DEFAULT_STACK_SIZE (64*1024) /* 16 KiB */
#define KMSG_SIZE (8*1024)
#define INT_SYSCALL 0x80
#define MAILBOX_SIZE 32