1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:38:11 +00:00

Kernel: Bump kernel stacks to 64 KB.

This makes the ELF symbolication crash go away while I work out a smart fix.
This commit is contained in:
Andreas Kling 2019-05-21 16:15:52 +02:00
parent a8313ae0a3
commit c9a9ca0dfe

View file

@ -17,7 +17,7 @@ HashTable<Thread*>& thread_table()
InlineLinkedList<Thread>* g_runnable_threads;
InlineLinkedList<Thread>* g_nonrunnable_threads;
static const dword default_kernel_stack_size = 16384;
static const dword default_kernel_stack_size = 65536;
static const dword default_userspace_stack_size = 65536;
Thread::Thread(Process& process)