summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrendan Coles <bcoles@gmail.com>2021-03-14 12:53:32 +0000
committerAndreas Kling <kling@serenityos.org>2021-03-14 13:55:29 +0100
commitab9f66a0693b38cdaa99d837565aae2ee91039a6 (patch)
treee8fdcbf35527f2683c2f79306d185b2eed1def86
parent6bc01909b7491c2b2805ac997dc8de0ee1f88667 (diff)
downloadserenity-ab9f66a0693b38cdaa99d837565aae2ee91039a6.zip
UserspaceEmulator: Increase stack size from 64 * KiB to 1 * MiB
-rw-r--r--Userland/DevTools/UserspaceEmulator/Emulator.cpp2
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;