Deleted Added
full compact
34c34
< * $FreeBSD: head/lib/libkse/thread/thr_private.h 139023 2004-12-18 18:07:37Z deischen $
---
> * $FreeBSD: head/lib/libkse/thread/thr_private.h 141822 2005-02-13 18:38:06Z deischen $
469c469,470
< #define THR_STACK_DEFAULT 65536
---
> #define THR_STACK32_DEFAULT (1 * 1024 * 1024)
> #define THR_STACK64_DEFAULT (2 * 1024 * 1024)
476c477,478
< #define THR_STACK_INITIAL 0x100000
---
> #define THR_STACK32_INITIAL (2 * 1024 * 1024)
> #define THR_STACK64_INITIAL (4 * 1024 * 1024)
1037c1039
< NULL, NULL, THR_STACK_DEFAULT, /* guardsize */0
---
> NULL, NULL, /* stacksize */0, /* guardsize */0
1075a1078,1079
> SCLASS int _thr_stack_default;
> SCLASS int _thr_stack_initial;