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:
parent
a8313ae0a3
commit
c9a9ca0dfe
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue