]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Move struct pthread_key_struct and destr_function to internals.h.
authorUlrich Drepper <drepper@redhat.com>
Thu, 23 Sep 1999 18:05:55 +0000 (18:05 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 23 Sep 1999 18:05:55 +0000 (18:05 +0000)
linuxthreads/specific.c

index 1dafecc2e84f320887a69ed408e3ae293ce5c355..6db8043ca568603ddb570c7d02b62d16e0085f64 100644 (file)
 #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 } };