diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-04-03 12:03:58 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-04-03 12:03:58 -0400 |
commit | f01d35184291c650f6a38f8b3da41693bfde0e70 (patch) | |
tree | 6ac03fcfbcde4312e0d97cfba474427e18e18089 /src/internal | |
parent | 06baa2b56cc64ec974f0dc6e67001d0cfa030826 (diff) | |
download | musl-f01d35184291c650f6a38f8b3da41693bfde0e70.zip musl-f01d35184291c650f6a38f8b3da41693bfde0e70.tar.gz musl-f01d35184291c650f6a38f8b3da41693bfde0e70.tar.bz2 |
simplify calling of timer signal handler
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/libc.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/internal/libc.h b/src/internal/libc.h index 6828f8b..b80cbcc 100644 --- a/src/internal/libc.h +++ b/src/internal/libc.h @@ -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; }; |