diff options
| author | Mike Frysinger <vapier@gentoo.org> | 2006-01-04 03:45:56 +0000 | 
|---|---|---|
| committer | Mike Frysinger <vapier@gentoo.org> | 2006-01-04 03:45:56 +0000 | 
| commit | e9264e49f3777c298e8a734cf4483c26b2602584 (patch) | |
| tree | bc99d793d97a1d73bc55a256f6983c5d26fcc925 /libpthread/linuxthreads.old/internals.h | |
| parent | cd662e64be1b10615e2fb44d5f3dc97eca905a31 (diff) | |
| download | uClibc-alpine-e9264e49f3777c298e8a734cf4483c26b2602584.tar.bz2 uClibc-alpine-e9264e49f3777c298e8a734cf4483c26b2602584.tar.xz  | |
update pthread weak handling to the style glibc uses
Diffstat (limited to 'libpthread/linuxthreads.old/internals.h')
| -rw-r--r-- | libpthread/linuxthreads.old/internals.h | 14 | 
1 files changed, 14 insertions, 0 deletions
diff --git a/libpthread/linuxthreads.old/internals.h b/libpthread/linuxthreads.old/internals.h index 4b3396aee..8422db58f 100644 --- a/libpthread/linuxthreads.old/internals.h +++ b/libpthread/linuxthreads.old/internals.h @@ -440,6 +440,10 @@ static inline pthread_descr thread_self (void)  #define SPIN_SLEEP_DURATION 2000001  #endif +/* Defined and used in libc.so.  */ +extern int __libc_multiple_threads attribute_hidden; +extern int __librt_multiple_threads; +  /* Debugging */  #ifdef DEBUG @@ -510,9 +514,19 @@ extern ssize_t __libc_write (int fd, const void *buf, size_t count);  /* Prototypes for some of the new semaphore functions.  */  extern int __new_sem_post (sem_t * sem); +/* TSD.  */ +extern int __pthread_internal_tsd_set (int key, const void * pointer); +extern void * __pthread_internal_tsd_get (int key); +extern void ** __attribute__ ((__const__)) +  __pthread_internal_tsd_address (int key); +  /* The functions called the signal events.  */  extern void __linuxthreads_create_event (void);  extern void __linuxthreads_death_event (void);  extern void __linuxthreads_reap_event (void); +#include <pthread-functions.h> + +extern int * __libc_pthread_init (const struct pthread_functions *functions); +  #endif /* internals.h */  | 
