simplify calling of timer signal handler

This commit is contained in:
Rich Felker
2011-04-03 12:03:58 -04:00
parent 06baa2b56c
commit f01d351842
3 changed files with 6 additions and 12 deletions

View File

@ -10,13 +10,12 @@ struct __libc {
void (*lock)(volatile int *);
void (*lockfile)(FILE *);
void (*fork_handler)(int);
void (*sigtimer)();
int (*rsyscall)(int, long, long, long, long, long, long);
int (*atexit)(void (*)(void));
void (*fini)(void);
void (*ldso_fini)(void);
volatile int threads_minus_1;
int ofl_lock;
int (*rsyscall)(int, long, long, long, long, long, long);
FILE *ofl_head;
};