diff options
Diffstat (limited to 'nptl/vars.c')
-rw-r--r-- | nptl/vars.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/nptl/vars.c b/nptl/vars.c index 2bcd1f8..45ca486 100644 --- a/nptl/vars.c +++ b/nptl/vars.c @@ -20,13 +20,9 @@ #include <tls.h> #include <unistd.h> -/* Default stack size. */ -size_t __default_stacksize attribute_hidden -#ifdef SHARED -; -#else - = PTHREAD_STACK_MIN; -#endif +/* Default thread attributes for the case when the user does not + provide any. */ +struct pthread_attr __default_pthread_attr attribute_hidden; /* Flag whether the machine is SMP or not. */ int __is_smp attribute_hidden; |