consistency with pthread stack min in limits.h

This commit is contained in:
Rich Felker 2011-04-08 12:15:37 -04:00
parent 60685ecad1
commit 5e72cb4a36
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ long sysconf(int name)
[_SC_TTY_NAME_MAX] = TTY_NAME_MAX,
[_SC_THREAD_DESTRUCTOR_ITERATIONS] = _POSIX_THREAD_DESTRUCTOR_ITERATIONS,
[_SC_THREAD_KEYS_MAX] = -1,
[_SC_THREAD_STACK_MIN] = 2*PAGE_SIZE,
[_SC_THREAD_STACK_MIN] = PAGE_SIZE,
[_SC_THREAD_THREADS_MAX] = -1,
[_SC_THREAD_ATTR_STACKADDR] = -1,
[_SC_THREAD_ATTR_STACKSIZE] = VER,