rework langinfo code for ABI compat and for use by time code
[musl] / src / time / timer_gettime.c
index 3d3156a..5a85821 100644 (file)
@@ -3,5 +3,6 @@
 
 int timer_gettime(timer_t t, struct itimerspec *val)
 {
-       return syscall(SYS_timer_gettime, t->timerid, val);
+       if ((uintptr_t)t >= 0x100000) t = ((pthread_t)t)->result;
+       return syscall(SYS_timer_gettime, (long)t, val);
 }