diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-19 21:04:15 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-19 21:04:15 +0000 |
commit | aebf0c050a8598c864dda377b4fadb79225d34ca (patch) | |
tree | f67c89bb2536f64c390654810b1aa1b95ae0a11e /libpthread/linuxthreads.old/sysdeps/pthread | |
parent | 6f728cdcf296054020c8606cb8cb841d84a64245 (diff) | |
download | uClibc-alpine-aebf0c050a8598c864dda377b4fadb79225d34ca.tar.bz2 uClibc-alpine-aebf0c050a8598c864dda377b4fadb79225d34ca.tar.xz |
Sync up with trunk.
Diffstat (limited to 'libpthread/linuxthreads.old/sysdeps/pthread')
-rw-r--r-- | libpthread/linuxthreads.old/sysdeps/pthread/bits/libc-tsd.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libpthread/linuxthreads.old/sysdeps/pthread/bits/libc-tsd.h b/libpthread/linuxthreads.old/sysdeps/pthread/bits/libc-tsd.h index efd0c83be..c152fddba 100644 --- a/libpthread/linuxthreads.old/sysdeps/pthread/bits/libc-tsd.h +++ b/libpthread/linuxthreads.old/sysdeps/pthread/bits/libc-tsd.h @@ -40,11 +40,10 @@ enum __libc_tsd_key_t { _LIBC_TSD_KEY_MALLOC = 0, #else -extern void *(*__libc_internal_tsd_get) (enum __libc_tsd_key_t) __THROW; -extern int (*__libc_internal_tsd_set) (enum __libc_tsd_key_t, - __const void *) __THROW; +extern void *(*__libc_internal_tsd_get) (enum __libc_tsd_key_t); +extern int (*__libc_internal_tsd_set) (enum __libc_tsd_key_t, __const void *); extern void **(*const __libc_internal_tsd_address) (enum __libc_tsd_key_t) - __THROW __attribute__ ((__const__)); + __attribute__ ((__const__)); #define __libc_tsd_address(KEY) \ (__libc_internal_tsd_address != NULL \ |