fix signal-based timers with null sigevent argument
[musl] / src / time / timer_getoverrun.c
index fa7715b..8a86833 100644 (file)
@@ -3,7 +3,6 @@
 
 int timer_getoverrun(timer_t t)
 {
-       if ((uintptr_t)t & 1) t = (void *)((unsigned long)t / 2);
-       else t = ((pthread_t)t)->result;
+       if ((uintptr_t)t >= 0x100000) t = ((pthread_t)t)->result;
        return syscall(SYS_timer_getoverrun, (long)t);
 }