123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #include <pthreadP.h>
- #include <stdlib.h>
- #include <tls.h>
- #include <unistd.h>
- size_t __default_stacksize attribute_hidden
- #ifdef SHARED
- ;
- #else
- = PTHREAD_STACK_MIN;
- #endif
- int __is_smp attribute_hidden;
- #ifndef TLS_MULTIPLE_THREADS_IN_TCB
- int __pthread_multiple_threads attribute_hidden;
- #endif
- struct pthread_key_struct __pthread_keys[PTHREAD_KEYS_MAX]
- __attribute__ ((nocommon));
- hidden_data_def (__pthread_keys)
|