diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-03-03 01:19:01 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-03-03 01:19:01 +0000 |
commit | f6fbf4923028951d158aa044f347ca00d00eabcb (patch) | |
tree | 3fe5a516d2a8620fb2ce996672ba47aab4653572 | |
parent | 7551556fa11c0158829757e437e80a1787aa95f8 (diff) | |
download | glibc-f6fbf4923028951d158aa044f347ca00d00eabcb.tar glibc-f6fbf4923028951d158aa044f347ca00d00eabcb.tar.gz glibc-f6fbf4923028951d158aa044f347ca00d00eabcb.tar.bz2 glibc-f6fbf4923028951d158aa044f347ca00d00eabcb.zip |
(tf_sleep): Lower sleep time a bit to not upset recent kernels.
-rw-r--r-- | nptl/tst-cancel4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/tst-cancel4.c b/nptl/tst-cancel4.c index eb5eb9e15c..3cedf6920f 100644 --- a/nptl/tst-cancel4.c +++ b/nptl/tst-cancel4.c @@ -154,7 +154,7 @@ tf_sleep (void *arg) exit (1); } - sleep (10000000); + sleep (1000000); printf ("%s: sleep returns\n", __FUNCTION__); |