1 /* Copyright (C) 2002, 2003 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, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
28 static pthread_once_t once
= PTHREAD_ONCE_INIT
;
30 static pthread_cond_t cond
= PTHREAD_COND_INITIALIZER
;
31 static pthread_mutex_t mut
= PTHREAD_MUTEX_INITIALIZER
;
33 static pthread_barrier_t bar
;
40 if (pthread_mutex_lock (&mut
) != 0)
42 puts ("once_handler1: mutex_lock failed");
46 int r
= pthread_barrier_wait (&bar
);
47 if (r
!= 0 && r
!= PTHREAD_BARRIER_SERIAL_THREAD
)
49 puts ("once_handler1: barrier_wait failed");
53 pthread_cond_wait (&cond
, &mut
);
55 /* We should never get here. */
68 pthread_once (&once
, once_handler1
);
70 /* We should never get here. */
71 puts ("pthread_once in tf returned");
81 if (pthread_barrier_init (&bar
, NULL
, 2) != 0)
83 puts ("barrier_init failed");
87 if (pthread_create (&th
, NULL
, tf
, NULL
) != 0)
89 puts ("first create failed");
93 int r
= pthread_barrier_wait (&bar
);
94 if (r
!= 0 && r
!= PTHREAD_BARRIER_SERIAL_THREAD
)
96 puts ("barrier_wait failed");
100 if (pthread_mutex_lock (&mut
) != 0)
102 puts ("mutex_lock failed");
105 /* We unlock the mutex so that we catch the case where the pthread_cond_wait
106 call incorrectly resumes and tries to get the mutex. */
107 if (pthread_mutex_unlock (&mut
) != 0)
109 puts ("mutex_unlock failed");
113 /* Cancel the thread. */
114 if (pthread_cancel (th
) != 0)
116 puts ("cancel failed");
121 pthread_join (th
, &result
);
122 if (result
!= PTHREAD_CANCELED
)
124 puts ("join didn't return PTHREAD_CANCELED");
128 pthread_once (&once
, once_handler2
);
132 puts ("global still 0");
139 #define TEST_FUNCTION do_test ()
141 #include "../test-skeleton.c"