UserspaceEmulator: Increase stack size from 64 * KiB to 1 * MiB
This commit is contained in:
parent
6bc01909b7
commit
ab9f66a069
Notes:
sideshowbarker
2024-07-18 21:22:17 +09:00
Author: https://github.com/bcoles Commit: https://github.com/SerenityOS/serenity/commit/ab9f66a0693 Pull-request: https://github.com/SerenityOS/serenity/pull/5785
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue