|
From: Tom H. <th...@cy...> - 2004-03-08 16:05:58
|
CVS commit by thughes:
Remove function which is no longer used following the changes to
the handling of libc thread specific data.
M +0 -16 vg_libpthread.c 1.147
--- valgrind/coregrind/vg_libpthread.c #1.146:1.147
@@ -1675,20 +1675,4 @@ void * __pthread_getspecific(pthread_key
-#ifdef GLIBC_2_3
-static
-void ** __pthread_getspecific_addr(pthread_key_t key)
-{
- void** specifics_ptr;
- ensure_valgrind("pthread_getspecific_addr");
-
- if (!key_is_valid(key))
- return NULL;
-
- specifics_ptr = get_or_allocate_specifics_ptr(pthread_self());
- return &(specifics_ptr[key]);
-}
-#endif
-
-
/* ---------------------------------------------------
ONCEry
|