From: Martin Lucina Date: Wed, 21 Jan 2015 19:02:53 +0000 (+0100) Subject: Increase default Mini-OS thread stack size to 256kB X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=598ceb54916b2a87c8646c96a23e1e03b2e65e59;p=rumpuser-xen.git Increase default Mini-OS thread stack size to 256kB Required to run some non-trivial applications (Hiawatha, PHP). See issue #22. Signed-off-by: Martin Lucina --- diff --git a/xen/include/mini-os/x86/limits.h b/xen/include/mini-os/x86/limits.h index 41f8620..7fd8e7a 100644 --- a/xen/include/mini-os/x86/limits.h +++ b/xen/include/mini-os/x86/limits.h @@ -14,7 +14,7 @@ #endif #endif -#define __STACK_SIZE_PAGE_ORDER 4 +#define __STACK_SIZE_PAGE_ORDER 6 #define __STACK_SIZE (__PAGE_SIZE * (1 << __STACK_SIZE_PAGE_ORDER)) #endif /* __ARCH_LIMITS_H__ */