From 6348dc004579b2f2580f346b636ec59f40888b15 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Sun, 11 Oct 2015 21:09:27 +0200 Subject: Remove __libc_getspecific The version from libc was not made to be replaced, and doesn't need to indeed. * Version: Remove __libc_getspecific symbol. * libpthread.a: Likewise. * libpthread_pic.a: Likewise. * pthread/cthreads-compat: Remove __libc_getspecific function. --- pthread/cthreads-compat.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'pthread') diff --git a/pthread/cthreads-compat.c b/pthread/cthreads-compat.c index cbe8170..1a0971b 100644 --- a/pthread/cthreads-compat.c +++ b/pthread/cthreads-compat.c @@ -70,12 +70,6 @@ cthread_getspecific (cthread_key_t key, void **val) return 0; } -void * -__libc_getspecific (cthread_key_t key) -{ - return pthread_getspecific (key); -} - int cthread_setspecific (cthread_key_t key, void *val) { -- cgit v1.2.3