remove no-longer-needed unblocking of signals in pthread_create
[musl] / src / time / timer_settime.c
index 00708f0..c400d45 100644 (file)
@@ -3,7 +3,6 @@
 
 int timer_settime(timer_t t, int flags, const struct itimerspec *val, struct itimerspec *old)
 {
-       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_settime, (long)t, flags, val, old);
 }