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
commit c9a9ca0dfe
Notes: sideshowbarker 2024-07-19 13:59:45 +09:00

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)