diff options
Diffstat (limited to 'nptl/pthreadP.h')
-rw-r--r-- | nptl/pthreadP.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/nptl/pthreadP.h b/nptl/pthreadP.h index 560457908a..ba9529f01b 100644 --- a/nptl/pthreadP.h +++ b/nptl/pthreadP.h @@ -45,6 +45,12 @@ #endif +/* Adaptive mutex definitions. */ +#ifndef MAX_ADAPTIVE_COUNT +# define MAX_ADAPTIVE_COUNT 100 +#endif + + /* Internal variables. */ @@ -55,6 +61,9 @@ extern size_t __default_stacksize attribute_hidden; extern size_t __static_tls_size attribute_hidden; extern size_t __static_tls_align_m1 attribute_hidden; +/* Flag whether the machine is SMP or not. */ +extern int __is_smp attribute_hidden; + /* Thread descriptor handling. */ extern list_t __stack_user; hidden_proto (__stack_user) |