Initial revision
[glibc.git] / nptl / tst-cond4.c
blobffc83c76682aabdf11b7ee519f77d311610f092c
1 /* Copyright (C) 2002 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
18 02111-1307 USA. */
20 #include <errno.h>
21 #include <pthread.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <unistd.h>
26 #include <sys/mman.h>
27 #include <sys/wait.h>
30 int *condition;
33 int
34 main (void)
36 size_t ps = sysconf (_SC_PAGESIZE);
37 char tmpfname[] = "/tmp/tst-cond4.XXXXXX";
38 char data[ps];
39 void *mem;
40 int fd;
41 pthread_mutexattr_t ma;
42 pthread_mutex_t *mut1;
43 pthread_mutex_t *mut2;
44 pthread_condattr_t ca;
45 pthread_cond_t *cond;
46 pid_t pid;
47 int result = 0;
48 int p;
50 fd = mkstemp (tmpfname);
51 if (fd == -1)
53 printf ("cannot open temporary file: %m\n");
54 exit (1);
57 /* Make sure it is always removed. */
58 unlink (tmpfname);
60 /* Create one page of data. */
61 memset (data, '\0', ps);
63 /* Write the data to the file. */
64 if (write (fd, data, ps) != ps)
66 puts ("short write");
67 exit (1);
70 mem = mmap (NULL, ps, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
71 if (mem == MAP_FAILED)
73 printf ("mmap failed: %m\n");
74 exit (1);
77 mut1 = (pthread_mutex_t *) (((uintptr_t) mem
78 + __alignof (pthread_mutex_t))
79 & ~(__alignof (pthread_mutex_t) - 1));
80 mut2 = mut1 + 1;
82 cond = (pthread_cond_t *) (((uintptr_t) (mut2 + 1)
83 + __alignof (pthread_cond_t))
84 & ~(__alignof (pthread_cond_t) - 1));
86 condition = (int *) (((uintptr_t) (cond + 1) + __alignof (int))
87 & ~(__alignof (int) - 1));
89 if (pthread_mutexattr_init (&ma) != 0)
91 puts ("mutexattr_init failed");
92 exit (1);
95 if (pthread_mutexattr_getpshared (&ma, &p) != 0)
97 puts ("1st mutexattr_getpshared failed");
98 exit (1);
101 if (p != PTHREAD_PROCESS_PRIVATE)
103 puts ("default pshared value wrong");
104 exit (1);
107 if (pthread_mutexattr_setpshared (&ma, PTHREAD_PROCESS_SHARED) != 0)
109 puts ("mutexattr_setpshared failed");
110 exit (1);
113 if (pthread_mutexattr_getpshared (&ma, &p) != 0)
115 puts ("2nd mutexattr_getpshared failed");
116 exit (1);
119 if (p != PTHREAD_PROCESS_SHARED)
121 puts ("pshared value after setpshared call wrong");
122 exit (1);
125 if (pthread_mutex_init (mut1, &ma) != 0)
127 puts ("1st mutex_init failed");
128 exit (1);
131 if (pthread_mutex_init (mut2, &ma) != 0)
133 puts ("2nd mutex_init failed");
134 exit (1);
137 if (pthread_condattr_init (&ca) != 0)
139 puts ("condattr_init failed");
140 exit (1);
143 if (pthread_condattr_setpshared (&ca, PTHREAD_PROCESS_SHARED) != 0)
145 puts ("condattr_setpshared failed");
146 exit (1);
149 if (pthread_cond_init (cond, &ca) != 0)
151 puts ("cond_init failed");
152 exit (1);
155 if (pthread_mutex_lock (mut1) != 0)
157 puts ("parent: 1st mutex_lock failed");
158 exit (1);
161 puts ("going to fork now");
162 pid = fork ();
163 if (pid == -1)
165 puts ("fork failed");
166 exit (1);
168 else if (pid == 0)
170 if (pthread_mutex_lock (mut2) != 0)
172 puts ("child: mutex_lock failed");
173 exit (1);
176 if (pthread_mutex_unlock (mut1) != 0)
178 puts ("child: 1st mutex_unlock failed");
179 exit (1);
183 if (pthread_cond_wait (cond, mut2) != 0)
185 puts ("child: cond_wait failed");
186 exit (1);
188 while (*condition == 0);
190 if (pthread_mutex_unlock (mut2) != 0)
192 puts ("child: 2nd mutex_unlock failed");
193 exit (1);
196 puts ("child done");
198 else
200 int status;
202 if (pthread_mutex_lock (mut1) != 0)
204 puts ("parent: 2nd mutex_lock failed");
205 exit (1);
208 if (pthread_mutex_lock (mut2) != 0)
210 puts ("parent: 3rd mutex_lock failed");
211 exit (1);
214 if (pthread_cond_signal (cond) != 0)
216 puts ("parent: cond_signal failed");
217 exit (1);
220 *condition = 1;
222 if (pthread_mutex_unlock (mut2) != 0)
224 puts ("parent: mutex_unlock failed");
225 exit (1);
228 puts ("waiting for child");
230 waitpid (pid, &status, 0);
231 result |= status;
233 puts ("parent done");
236 return result;