diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-02-21 03:20:32 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-02-21 03:20:32 +0000 |
commit | dd0b7b197ed0ea18b0a869a39acbc51435d0ba56 (patch) | |
tree | 88139dd0bc87bd0be4fe162612a1ca1b445c2e86 | |
parent | 6fadaea6a2854bbb20737ac199f8c4b85415d661 (diff) | |
download | glibc-dd0b7b197ed0ea18b0a869a39acbc51435d0ba56.tar.gz glibc-dd0b7b197ed0ea18b0a869a39acbc51435d0ba56.tar.xz glibc-dd0b7b197ed0ea18b0a869a39acbc51435d0ba56.zip |
Update.
2004-02-20 Ulrich Drepper <drepper@redhat.com> * tst-cancel9.c (cleanup): Don't print to stderr.
-rw-r--r-- | elf/tst-tls13.c | 1 | ||||
-rw-r--r-- | nptl/ChangeLog | 4 | ||||
-rw-r--r-- | nptl/tst-cancel9.c | 4 |
3 files changed, 7 insertions, 2 deletions
diff --git a/elf/tst-tls13.c b/elf/tst-tls13.c index 31b9cfbba3..55fb62e540 100644 --- a/elf/tst-tls13.c +++ b/elf/tst-tls13.c @@ -26,4 +26,5 @@ do_test (void) } #define TEST_FUNCTION do_test () +#define TIMEOUT 3 #include "../test-skeleton.c" diff --git a/nptl/ChangeLog b/nptl/ChangeLog index b079883f6b..bb7fe88cfe 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,7 @@ +2004-02-20 Ulrich Drepper <drepper@redhat.com> + + * tst-cancel9.c (cleanup): Don't print to stderr. + 2004-02-20 Kaz Kojima <kkojima@rr.iij4u.or.jp> * sysdeps/sh/jmpbuf-unwind.h (_JMPBUF_UNWINDS_ADJ): Fix variable name. diff --git a/nptl/tst-cancel9.c b/nptl/tst-cancel9.c index 1d59e19e0f..037ef30fd6 100644 --- a/nptl/tst-cancel9.c +++ b/nptl/tst-cancel9.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003 Free Software Foundation, Inc. +/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2003. @@ -31,7 +31,7 @@ static pthread_barrier_t b; static void cleanup (void *arg) { - fprintf (stderr, "in cleanup\n"); + fputs ("in cleanup\n", stdout); } |