diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-05-21 16:15:52 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-05-21 16:15:52 +0200 |
commit | c9a9ca0dfe8a85da053be930a3365136919bab63 (patch) | |
tree | 1d80db0be9b8d679a83468ae4c77ce8e1a8defde /Kernel | |
parent | a8313ae0a3a9598fba95c126336dc6729bb22304 (diff) | |
download | serenity-c9a9ca0dfe8a85da053be930a3365136919bab63.zip |
Kernel: Bump kernel stacks to 64 KB.
This makes the ELF symbolication crash go away while I work out a smart fix.
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/Thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Thread.cpp b/Kernel/Thread.cpp index 3060828a16..49343c529a 100644 --- a/Kernel/Thread.cpp +++ b/Kernel/Thread.cpp @@ -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) |