2004-02-20  Ulrich Drepper  <drepper@redhat.com>

	* tst-cancel9.c (cleanup): Don't print to stderr.
This commit is contained in:
Ulrich Drepper 2004-02-21 03:20:32 +00:00
parent 6fadaea6a2
commit dd0b7b197e
3 changed files with 7 additions and 2 deletions

View file

@ -26,4 +26,5 @@ do_test (void)
}
#define TEST_FUNCTION do_test ()
#define TIMEOUT 3
#include "../test-skeleton.c"

View file

@ -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.

View file

@ -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);
}