diff options
-rw-r--r-- | src/arch/riscv/process.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/riscv/process.cc b/src/arch/riscv/process.cc index 54afc854c..371a8e48a 100644 --- a/src/arch/riscv/process.cc +++ b/src/arch/riscv/process.cc @@ -61,7 +61,7 @@ RiscvProcess::RiscvProcess(ProcessParams * params, ObjectFile *objFile) : Process(params, objFile) { const Addr stack_base = 0x7FFFFFFFFFFFFFFFL; - const Addr max_stack_size = PageBytes * 64; + const Addr max_stack_size = 8 * 1024 * 1024; const Addr next_thread_stack_base = stack_base - max_stack_size; const Addr brk_point = roundUp(objFile->bssBase() + objFile->bssSize(), PageBytes); |