simplify pthread tsd key handling

This commit is contained in:
Rich Felker
2011-04-03 02:40:18 -04:00
parent fd80cfa00b
commit 537d33d334
3 changed files with 7 additions and 10 deletions

View File

@ -9,7 +9,7 @@ struct __libc {
void (*cancelpt)(int);
void (*lock)(volatile int *);
void (*lockfile)(FILE *);
void (**tsd_keys)(void *);
void (*fork_handler)(int);
void (*sigtimer)();
int (*atexit)(void (*)(void));
void (*fini)(void);
@ -17,7 +17,6 @@ struct __libc {
volatile int threads_minus_1;
int ofl_lock;
int (*rsyscall)(int, long, long, long, long, long, long);
void (*fork_handler)(int);
FILE *ofl_head;
};