From: Ulrich Drepper Date: Thu, 23 Sep 1999 18:05:55 +0000 (+0000) Subject: Move struct pthread_key_struct and destr_function to internals.h. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7939e51494cc23e0fd99a0617bb1fb8ecd180661;p=thirdparty%2Fglibc.git Move struct pthread_key_struct and destr_function to internals.h. --- diff --git a/linuxthreads/specific.c b/linuxthreads/specific.c index 1dafecc2e84..6db8043ca56 100644 --- a/linuxthreads/specific.c +++ b/linuxthreads/specific.c @@ -20,15 +20,8 @@ #include "pthread.h" #include "internals.h" -typedef void (*destr_function)(void *); - /* Table of keys. */ -struct pthread_key_struct { - int in_use; /* already allocated? */ - destr_function destr; /* destruction routine */ -}; - static struct pthread_key_struct pthread_keys[PTHREAD_KEYS_MAX] = { { 0, NULL } };