mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 12:32:56 +01:00
base: downsize initial main-thread stack
As the initial main-thread stack is not used for the whole main-thread life anymore but only for the initialization of the Genode environment it can be downsized to 32Kb for all architectures. ref #989
This commit is contained in:
committed by
Norman Feske
parent
83b0cdf709
commit
5a6253eeff
@@ -54,7 +54,7 @@
|
||||
.p2align 4
|
||||
.global _stack_low
|
||||
_stack_low:
|
||||
.space 128 * 1024
|
||||
.space 32 * 1024
|
||||
.global _stack_high
|
||||
_stack_high:
|
||||
|
||||
|
||||
@@ -57,7 +57,7 @@
|
||||
.p2align 4
|
||||
.global _stack_low
|
||||
_stack_low:
|
||||
.space 64 * 1024
|
||||
.space 32 * 1024
|
||||
.global _stack_high
|
||||
_stack_high:
|
||||
|
||||
|
||||
@@ -68,7 +68,7 @@
|
||||
.p2align 8
|
||||
.global _stack_low
|
||||
_stack_low:
|
||||
.space 64 * 1024
|
||||
.space 32 * 1024
|
||||
.global _stack_high
|
||||
_stack_high:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user