1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 21:35:06 +00:00

UserspaceEmulator: Increase stack size from 64 * KiB to 1 * MiB

This commit is contained in:
Brendan Coles 2021-03-14 12:53:32 +00:00 committed by Andreas Kling
parent 6bc01909b7
commit ab9f66a069

View file

@ -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;