posix_spawn: honor POSIX_SPAWN_SETSIGDEF flag
[oweals/musl.git] / src / time / timer_getoverrun.c
index fa7715bbe73f47e03a3a28d5a66210f771eb6e74..8a86833d4a481a9f9dbb19ccba9e110dfad2aca9 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);
 }