diff options
Diffstat (limited to 'libpthread')
| -rw-r--r-- | libpthread/linuxthreads/pthread.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/libpthread/linuxthreads/pthread.c b/libpthread/linuxthreads/pthread.c index c4225bce8..0ccd8bcf4 100644 --- a/libpthread/linuxthreads/pthread.c +++ b/libpthread/linuxthreads/pthread.c @@ -889,7 +889,7 @@ __pthread_timedsuspend_old(pthread_descr self, const struct timespec *abstime)  	struct timespec reltime;  	/* Compute a time offset relative to now.  */ -	__gettimeofday (&now, NULL); +	__libc_gettimeofday (&now, NULL);  	reltime.tv_nsec = abstime->tv_nsec - now.tv_usec * 1000;  	reltime.tv_sec = abstime->tv_sec - now.tv_sec;  	if (reltime.tv_nsec < 0) { @@ -974,7 +974,7 @@ int __pthread_timedsuspend_new(pthread_descr self, const struct timespec *abstim  	    struct timespec reltime;  	    /* Compute a time offset relative to now.  */ -	    gettimeofday (&now, NULL); +	    __libc_gettimeofday (&now, NULL);  	    reltime.tv_nsec = abstime->tv_nsec - now.tv_usec * 1000;  	    reltime.tv_sec = abstime->tv_sec - now.tv_sec;  	    if (reltime.tv_nsec < 0) {  | 
