• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * barrier3.c
3  *
4  *
5  * --------------------------------------------------------------------------
6  *
7  *      Pthreads-win32 - POSIX Threads Library for Win32
8  *      Copyright(C) 1998 John E. Bossom
9  *      Copyright(C) 1999,2005 Pthreads-win32 contributors
10  *
11  *      Contact Email: rpj@callisto.canberra.edu.au
12  *
13  *      The current list of contributors is contained
14  *      in the file CONTRIBUTORS included with the source
15  *      code distribution. The list can also be seen at the
16  *      following World Wide Web location:
17  *      http://sources.redhat.com/pthreads-win32/contributors.html
18  *
19  *      This library is free software; you can redistribute it and/or
20  *      modify it under the terms of the GNU Lesser General Public
21  *      License as published by the Free Software Foundation; either
22  *      version 2 of the License, or (at your option) any later version.
23  *
24  *      This library is distributed in the hope that it will be useful,
25  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
26  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
27  *      Lesser General Public License for more details.
28  *
29  *      You should have received a copy of the GNU Lesser General Public
30  *      License along with this library in the file COPYING.LIB;
31  *      if not, write to the Free Software Foundation, Inc.,
32  *      59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
33  *
34  * --------------------------------------------------------------------------
35  *
36  * Declare a single barrier object with barrier attribute, wait on it,
37  * and then destroy it.
38  *
39  */
40 
41 #include "test.h"
42 
43 pthread_barrier_t barrier = NULL;
44 static intptr_t result = 1;
45 
func(void * arg)46 void * func(void * arg)
47 {
48   union _ptr_int {
49 		void	*v;
50 		int		i;
51   } r;
52   r.i = pthread_barrier_wait(&barrier);
53 
54   return r.v;
55 }
56 
57 int
main()58 main()
59 {
60   pthread_t t;
61   pthread_barrierattr_t ba;
62 
63   assert(pthread_barrierattr_init(&ba) == 0);
64   assert(pthread_barrierattr_setpshared(&ba, PTHREAD_PROCESS_PRIVATE) == 0);
65   assert(pthread_barrier_init(&barrier, &ba, 1) == 0);
66 
67   assert(pthread_create(&t, NULL, func, NULL) == 0);
68 
69   assert(pthread_join(t, (void **) &result) == 0);
70 
71   assert(result == PTHREAD_BARRIER_SERIAL_THREAD);
72 
73   assert(pthread_barrier_destroy(&barrier) == 0);
74   assert(pthread_barrierattr_destroy(&ba) == 0);
75 
76   return 0;
77 }
78