diff options
| author | Rich Felker <dalias@aerifal.cx> | 2011-04-08 12:15:37 -0400 | 
|---|---|---|
| committer | Rich Felker <dalias@aerifal.cx> | 2011-04-08 12:15:37 -0400 | 
| commit | 5e72cb4a363fbf2e5b4cbeddbfde2d98ec209056 (patch) | |
| tree | e25f02461ffe37ad067296db41774453d96a795a /src | |
| parent | 60685ecad1c2398b4ab95fa7bf88c8336d914a6c (diff) | |
| download | musl-5e72cb4a363fbf2e5b4cbeddbfde2d98ec209056.tar.gz | |
consistency with pthread stack min in limits.h
Diffstat (limited to 'src')
| -rw-r--r-- | src/conf/sysconf.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/conf/sysconf.c b/src/conf/sysconf.c index a660257d..11a62883 100644 --- a/src/conf/sysconf.c +++ b/src/conf/sysconf.c @@ -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, | 
