diff options
Diffstat (limited to 'sysdeps/pthread/timer_settime.c')
-rw-r--r-- | sysdeps/pthread/timer_settime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/pthread/timer_settime.c b/sysdeps/pthread/timer_settime.c index 5c541acb77..8a71a506f8 100644 --- a/sysdeps/pthread/timer_settime.c +++ b/sysdeps/pthread/timer_settime.c @@ -55,7 +55,7 @@ timer_settime (timer_t timerid, int flags, const struct itimerspec *value, if ((flags & TIMER_ABSTIME) == 0) { - clock_gettime (timer->clock, &now); + __clock_gettime (timer->clock, &now); have_now = 1; } @@ -80,7 +80,7 @@ timer_settime (timer_t timerid, int flags, const struct itimerspec *value, if (! have_now) { pthread_mutex_unlock (&__timer_mutex); - clock_gettime (timer->clock, &now); + __clock_gettime (timer->clock, &now); have_now = 1; pthread_mutex_lock (&__timer_mutex); timer_addref (timer); |