summaryrefslogtreecommitdiff
path: root/nptl/tst-cond20.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-09-02 22:47:23 +0000
committerUlrich Drepper <drepper@redhat.com>2004-09-02 22:47:23 +0000
commitf76c8499101d2826013989954dcbccf5fb8321be (patch)
tree594ecc513964a1d071f243ad9f6cc4a9f6fcd2e3 /nptl/tst-cond20.c
parent73f7c32c47ab2397935d9fc2aeaa594794b38c7e (diff)
Update.
* sysdeps/alpha/jmpbuf-unwind.h: Define __libc_unwind_longjmp. * sysdeps/i386/jmpbuf-unwind.h: Likewise * sysdeps/powerpc/jmpbuf-unwind.h: Likewise. * sysdeps/s390/jmpbuf-unwind.h: Likewise. * sysdeps/sh/jmpbuf-unwind.h: Likewise. * sysdeps/sparc/sparc32/jmpbuf-unwind.h: Likewise. * sysdeps/unix/sysv/linux/ia64/jmpbuf-unwind.h: Likewise. * sysdeps/x86_64/jmpbuf-unwind.h: Likewise. * unwind.c: Use it.
Diffstat (limited to 'nptl/tst-cond20.c')
-rw-r--r--nptl/tst-cond20.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/tst-cond20.c b/nptl/tst-cond20.c
index ba50d58534..18918f32e6 100644
--- a/nptl/tst-cond20.c
+++ b/nptl/tst-cond20.c
@@ -46,7 +46,7 @@ tf (void *p)
struct timeval tv;
gettimeofday (&tv, NULL);
struct timespec ts;
- /* Wait three second. */
+ /* Wait three seconds. */
ts.tv_sec = tv.tv_sec + 3;
ts.tv_nsec = tv.tv_usec * 1000;
pthread_cond_timedwait (&cond, &mut, &ts);