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
22 #include <semaphore.h>
29 remove_sem (int status
, void *arg
)
43 s
= sem_open ("/glibc-tst-sem4", O_CREAT
, 0600, 1);
48 puts ("sem_open not supported. Oh well.");
52 /* Maybe the shm filesystem has strict permissions. */
55 puts ("sem_open not allowed. Oh well.");
59 printf ("sem_open: %m\n");
63 on_exit (remove_sem
, (void *) "/glibc-tst-sem4");
65 /* We have the semaphore object. Now try again with O_EXCL, this
67 s2
= sem_open ("/glibc-tst-sem4", O_CREAT
| O_EXCL
, 0600, 1);
70 puts ("2nd sem_open didn't fail");
75 puts ("2nd sem_open returned wrong error");
79 /* Check the value. */
80 if (sem_getvalue (s
, &val
) == -1)
82 puts ("getvalue failed");
87 printf ("initial value wrong: got %d, expected 1\n", val
);
91 if (TEMP_FAILURE_RETRY (sem_wait (s
)) == -1)
93 puts ("1st sem_wait failed");
100 printf ("fork failed: %m\n");
108 /* Check the value. */
109 if (sem_getvalue (s
, &val
) == -1)
111 puts ("child: getvalue failed");
116 printf ("child: value wrong: got %d, expect 0\n", val
);
120 if (sem_post (s
) == -1)
122 puts ("child: post failed");
128 if (TEMP_FAILURE_RETRY (sem_wait (s
)) == -1)
130 puts ("2nd sem_wait failed");
134 if (sem_getvalue (s
, &val
) == -1)
136 puts ("parent: 2nd getvalue failed");
141 printf ("parent: value wrong: got %d, expected 0\n", val
);