diff options
author | deischen <deischen@FreeBSD.org> | 2007-12-16 23:29:57 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 2007-12-16 23:29:57 +0000 |
commit | 8cf2d070a8052f74c73cb0b3d2b09bc755e9ce6e (patch) | |
tree | 6d85f1ab760abd9317ea7b79e8901fff062f5187 /lib/libkse/thread/thr_spec.c | |
parent | bb20311c500fd8c49f6ba2960d43526101d39911 (diff) | |
download | FreeBSD-src-8cf2d070a8052f74c73cb0b3d2b09bc755e9ce6e.zip FreeBSD-src-8cf2d070a8052f74c73cb0b3d2b09bc755e9ce6e.tar.gz |
Remove hacks to allow libkse to export its symbols in the LIBTHREAD_1_0
version namespace which was needed before the library version was
bumped.
Diffstat (limited to 'lib/libkse/thread/thr_spec.c')
-rw-r--r-- | lib/libkse/thread/thr_spec.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/libkse/thread/thr_spec.c b/lib/libkse/thread/thr_spec.c index a7c6c2c..1d4be45 100644 --- a/lib/libkse/thread/thr_spec.c +++ b/lib/libkse/thread/thr_spec.c @@ -41,21 +41,6 @@ struct pthread_key _thread_keytable[PTHREAD_KEYS_MAX]; -/* - * XXX - This breaks the linker if LT10_COMPAT_DEFAULT doesn't - * also include a weak reference to the default symbol. - */ -LT10_COMPAT_PRIVATE(_thread_keytable); - -LT10_COMPAT_PRIVATE(_pthread_key_create); -LT10_COMPAT_DEFAULT(pthread_key_create); -LT10_COMPAT_PRIVATE(_pthread_key_delete); -LT10_COMPAT_DEFAULT(pthread_key_delete); -LT10_COMPAT_PRIVATE(_pthread_getspecific); -LT10_COMPAT_DEFAULT(pthread_getspecific); -LT10_COMPAT_PRIVATE(_pthread_setspecific); -LT10_COMPAT_DEFAULT(pthread_setspecific); - __weak_reference(_pthread_key_create, pthread_key_create); __weak_reference(_pthread_key_delete, pthread_key_delete); __weak_reference(_pthread_getspecific, pthread_getspecific); |