diff options
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/ChangeLog | 4 | ||||
-rw-r--r-- | nptl/tst-cancel9.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index b079883..bb7fe88 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 1d59e19..037ef30 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); } |