diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-08-06 14:49:17 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-08-06 14:49:17 +0000 |
commit | 7711a9b8e870372e19f6bea41a70baa0ea2878dd (patch) | |
tree | 25e6076580afd740b38ebb92b827c8ca0438baa9 /libpthread/linuxthreads/specific.c | |
parent | 0a2d7c0bb713079a668162883e5ccdacf92f4beb (diff) |
Several pthreads updates. Enable linuxthreads_db. Several fixes
related to thread local storage.
-Erik
Diffstat (limited to 'libpthread/linuxthreads/specific.c')
-rw-r--r-- | libpthread/linuxthreads/specific.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libpthread/linuxthreads/specific.c b/libpthread/linuxthreads/specific.c index 14c4b29d1..cf54f7fa1 100644 --- a/libpthread/linuxthreads/specific.c +++ b/libpthread/linuxthreads/specific.c @@ -166,7 +166,7 @@ libc_internal_tsd_set(enum __libc_tsd_key_t key, const void * pointer) return 0; } int (*__libc_internal_tsd_set)(enum __libc_tsd_key_t key, const void * pointer) - = libc_internal_tsd_set; + = libc_internal_tsd_set; static void * libc_internal_tsd_get(enum __libc_tsd_key_t key) @@ -176,4 +176,5 @@ libc_internal_tsd_get(enum __libc_tsd_key_t key) return THREAD_GETMEM_NC(self, p_libc_specific[key]); } void * (*__libc_internal_tsd_get)(enum __libc_tsd_key_t key) - = libc_internal_tsd_get; + = libc_internal_tsd_get; + |