summaryrefslogtreecommitdiff
path: root/src/internal
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-04-03 12:03:58 -0400
committerRich Felker <dalias@aerifal.cx>2011-04-03 12:03:58 -0400
commitf01d35184291c650f6a38f8b3da41693bfde0e70 (patch)
tree6ac03fcfbcde4312e0d97cfba474427e18e18089 /src/internal
parent06baa2b56cc64ec974f0dc6e67001d0cfa030826 (diff)
downloadmusl-f01d35184291c650f6a38f8b3da41693bfde0e70.tar.gz
simplify calling of timer signal handler
Diffstat (limited to 'src/internal')
-rw-r--r--src/internal/libc.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/internal/libc.h b/src/internal/libc.h
index 6828f8b6..b80cbcc9 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;
};