From 7939e51494cc23e0fd99a0617bb1fb8ecd180661 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 23 Sep 1999 18:05:55 +0000 Subject: [PATCH] Move struct pthread_key_struct and destr_function to internals.h. --- linuxthreads/specific.c | 7 ------- 1 file changed, 7 deletions(-) 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 } }; -- 2.47.2