1 /* Copyright (C) 2002-2018 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
25 static int do_test (void);
27 #define TEST_FUNCTION do_test ()
28 #include "../test-skeleton.c"
30 /* Note that this test requires more than the standard. It is
31 required that there are no spurious wakeups if only more readers
32 are added. This is a reasonable demand. */
35 static pthread_cond_t cond
= PTHREAD_COND_INITIALIZER
;
36 static pthread_mutex_t mut
= PTHREAD_MUTEX_INITIALIZER
;
45 int i
= (long int) arg
;
49 err
= pthread_mutex_lock (&mut
);
52 printf ("child %d mutex_lock failed: %s\n", i
, strerror (err
));
56 /* This call should never return. */
57 xpthread_cond_wait (&cond
, &mut
);
58 puts ("error: pthread_cond_wait in tf returned");
60 /* We should never get here. */
73 for (i
= 0; i
< N
; ++i
)
79 /* Release the mutex. */
80 err
= pthread_mutex_unlock (&mut
);
83 printf ("mutex_unlock %d failed: %s\n", i
, strerror (err
));
88 err
= pthread_create (&th
, NULL
, tf
, (void *) (long int) i
);
91 printf ("create %d failed: %s\n", i
, strerror (err
));
96 err
= pthread_mutex_lock (&mut
);
99 printf ("mutex_lock %d failed: %s\n", i
, strerror (err
));
106 /* This call should never return. */
107 xpthread_cond_wait (&cond
, &mut
);
109 puts ("error: pthread_cond_wait in do_test returned");