diff options
Diffstat (limited to 'src/time/timer_getoverrun.c')
-rw-r--r-- | src/time/timer_getoverrun.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/time/timer_getoverrun.c b/src/time/timer_getoverrun.c index fa7715bb..8a86833d 100644 --- a/src/time/timer_getoverrun.c +++ b/src/time/timer_getoverrun.c @@ -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); } |