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

decrease starting point of the heap

This commit is contained in:
Stefan Lankes 2016-11-27 11:52:25 +01:00 committed by Daniel Krebs
parent 63e5cdc28e
commit 9d6375b8fb

View file

@ -42,7 +42,7 @@ extern "C" {
#define CACHE_LINE 64
#define KERNEL_STACK_SIZE (8*1024)
#define DEFAULT_STACK_SIZE (256*1024)
#define HEAP_START (1ULL << 48 - 0x2000)
#define HEAP_START (1ULL << 34)
#define KMSG_SIZE (4*1024)
#define INT_SYSCALL 0x80
#define MAILBOX_SIZE 128