vancouver: calculate STACK_SIZE from addr_t size.

This is necessary on 64bit host.
This commit is contained in:
Markus Partheymüller 2013-03-07 13:08:35 +01:00 committed by Norman Feske
parent 8bc719ee1d
commit 4bb0a8231e
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@
enum {
PAGE_SIZE_LOG2 = 12UL,
PAGE_SIZE = 1UL << PAGE_SIZE_LOG2,
STACK_SIZE = 4096,
STACK_SIZE = 1024*sizeof(Genode::addr_t),
};