diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-03-06 21:39:15 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-03-06 21:39:15 +0000 |
commit | c1b7e21fb170ad17c478428b302130b5dce4accf (patch) | |
tree | d884f9682cd5210d50c357788505686c5a1fc900 /linuxthreads/tst-cancel4.c | |
parent | 696efd11f3e7873d89365ab60cd9f1feb0fa3a63 (diff) | |
download | glibc-c1b7e21fb170ad17c478428b302130b5dce4accf.tar glibc-c1b7e21fb170ad17c478428b302130b5dce4accf.tar.gz glibc-c1b7e21fb170ad17c478428b302130b5dce4accf.tar.bz2 glibc-c1b7e21fb170ad17c478428b302130b5dce4accf.zip |
(tf_sleep): Lower sleep time a bit to not upset recent kernels.
Diffstat (limited to 'linuxthreads/tst-cancel4.c')
-rw-r--r-- | linuxthreads/tst-cancel4.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linuxthreads/tst-cancel4.c b/linuxthreads/tst-cancel4.c index 9394848b5b..774f583d1f 100644 --- a/linuxthreads/tst-cancel4.c +++ b/linuxthreads/tst-cancel4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002 Free Software Foundation, Inc. +/* Copyright (C) 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2002. @@ -154,7 +154,7 @@ tf_sleep (void *arg) exit (1); } - sleep (10000000); + sleep (1000000); printf ("%s: sleep returns\n", __FUNCTION__); |