Update.
authorUlrich Drepper <drepper@redhat.com>
Sun, 13 Feb 2000 16:59:51 +0000 (16:59 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 13 Feb 2000 16:59:51 +0000 (16:59 +0000)
2000-02-13  Andreas Jaeger  <aj@suse.de>

* condvar.c (pthread_cond_timedwait_relative_new): Fix last patch.
(pthread_cond_timedwait_relative_old): Likewise.

linuxthreads/ChangeLog
linuxthreads/condvar.c

index 382ad68..8728384 100644 (file)
@@ -1,3 +1,8 @@
+2000-02-13  Andreas Jaeger  <aj@suse.de>
+
+       * condvar.c (pthread_cond_timedwait_relative_new): Fix last patch.
+       (pthread_cond_timedwait_relative_old): Likewise.
+
 2000-02-13  Ulrich Drepper  <drepper@redhat.com>
 
        * condvar.c (pthread_cond_timedwait_relative_old): Undo last patch
index b1cde4d..2dd1e84 100644 (file)
@@ -194,7 +194,7 @@ pthread_cond_timedwait_relative_old(pthread_cond_t *cond,
        ;
 #else
       /* Sleep for the required duration */
-      retsleep = __libc_nanosleep(&reltime, NULL);
+      retsleep = __libc_nanosleep(reltime, NULL);
 #endif
       /* Block the restart signal again */
       sigprocmask(SIG_SETMASK, &initial_mask, NULL);
@@ -337,7 +337,7 @@ pthread_cond_timedwait_relative_new(pthread_cond_t *cond,
       ;
 #else
     /* Sleep for the required duration */
-    retsleep = __libc_nanosleep(&reltime, NULL);
+    retsleep = __libc_nanosleep(reltime, NULL);
 #endif
     /* Block the restart signal again */
     sigprocmask(SIG_SETMASK, &initial_mask, NULL);