rework langinfo code for ABI compat and for use by time code
[musl] / src / time / timer_gettime.c
index 2320873..5a85821 100644 (file)
@@ -3,7 +3,6 @@
 
 int timer_gettime(timer_t t, struct itimerspec *val)
 {
-       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_gettime, (long)t, val);
 }