diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-03-30 13:04:55 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-03-30 13:04:55 -0400 |
commit | 3990c5c6a40440cdb14746ac080d0ecf8d5d6733 (patch) | |
tree | b20dd1257972fdbe84202e9b6c913e90c1fa1d54 /arch/x86_64 | |
parent | b8be64c43da207a2f497c1c5b5720e4a2027348a (diff) | |
download | musl-3990c5c6a40440cdb14746ac080d0ecf8d5d6733.tar.gz |
avoid all malloc/free in timer creation/destruction
instead of allocating a userspace structure for signal-based timers,
simply use the kernel timer id. we use the fact that thread pointers
will always be zero in the low bit (actually more) to encode integer
timerid values as pointers.
also, this change ensures that the timer_destroy syscall has completed
before the library timer_destroy function returns, in case it matters.
Diffstat (limited to 'arch/x86_64')
-rwxr-xr-x | arch/x86_64/bits/alltypes.h.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86_64/bits/alltypes.h.sh b/arch/x86_64/bits/alltypes.h.sh index cd84a2da..b0aecd9c 100755 --- a/arch/x86_64/bits/alltypes.h.sh +++ b/arch/x86_64/bits/alltypes.h.sh @@ -107,7 +107,7 @@ TYPEDEF long long blkcnt_t; TYPEDEF unsigned long long fsblkcnt_t; TYPEDEF unsigned long long fsfilcnt_t; -TYPEDEF struct __timer * timer_t; +TYPEDEF void * timer_t; TYPEDEF int clockid_t; TYPEDEF long clock_t; |