Deleted Added
full compact
33c33
< * $FreeBSD: head/lib/libkse/thread/thr_init.c 139023 2004-12-18 18:07:37Z deischen $
---
> * $FreeBSD: head/lib/libkse/thread/thr_init.c 141822 2005-02-13 18:38:06Z deischen $
340c340
< if (mmap((void *)_usrstack - THR_STACK_INITIAL -
---
> if (mmap((void *)_usrstack - _thr_stack_initial -
354,355c354,355
< thread->attr.stackaddr_attr = (void *)_usrstack - THR_STACK_INITIAL;
< thread->attr.stacksize_attr = THR_STACK_INITIAL;
---
> thread->attr.stackaddr_attr = (void *)_usrstack - _thr_stack_initial;
> thread->attr.stacksize_attr = _thr_stack_initial;
429a430,437
> if (sizeof(void *) == 8) {
> _thr_stack_default = THR_STACK64_DEFAULT;
> _thr_stack_initial = THR_STACK64_INITIAL;
> }
> else {
> _thr_stack_default = THR_STACK32_DEFAULT;
> _thr_stack_initial = THR_STACK32_INITIAL;
> }