diff options
author | Brendan Coles <bcoles@gmail.com> | 2021-03-14 12:53:32 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-14 13:55:29 +0100 |
commit | ab9f66a0693b38cdaa99d837565aae2ee91039a6 (patch) | |
tree | e8fdcbf35527f2683c2f79306d185b2eed1def86 | |
parent | 6bc01909b7491c2b2805ac997dc8de0ee1f88667 (diff) | |
download | serenity-ab9f66a0693b38cdaa99d837565aae2ee91039a6.zip |
UserspaceEmulator: Increase stack size from 64 * KiB to 1 * MiB
-rw-r--r-- | Userland/DevTools/UserspaceEmulator/Emulator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/DevTools/UserspaceEmulator/Emulator.cpp b/Userland/DevTools/UserspaceEmulator/Emulator.cpp index 091e77a453..8707ef9b58 100644 --- a/Userland/DevTools/UserspaceEmulator/Emulator.cpp +++ b/Userland/DevTools/UserspaceEmulator/Emulator.cpp @@ -47,7 +47,7 @@ namespace UserspaceEmulator { static constexpr u32 stack_location = 0x10000000; -static constexpr size_t stack_size = 64 * KiB; +static constexpr size_t stack_size = 1 * MiB; static Emulator* s_the; |