1 /* Copyright (C) 2002-2015 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/>. */
21 #include <semaphore.h>
28 remove_sem (int status
, void *arg
)
42 /* Start with a clean slate and register a clean-up action. No need to
43 act if sem_unlink fails because we will catch the same problem during the
45 sem_unlink ("/glibc-tst-sem4");
46 on_exit (remove_sem
, (void *) "/glibc-tst-sem4");
48 s
= sem_open ("/glibc-tst-sem4", O_CREAT
, 0600, 1);
53 puts ("sem_open not supported. Oh well.");
57 /* Maybe the shm filesystem has strict permissions. */
60 puts ("sem_open not allowed. Oh well.");
64 printf ("sem_open: %m\n");
68 /* We have the semaphore object. Now try again with O_EXCL, this
70 s2
= sem_open ("/glibc-tst-sem4", O_CREAT
| O_EXCL
, 0600, 1);
73 puts ("2nd sem_open didn't fail");
78 puts ("2nd sem_open returned wrong error");
82 /* Check the value. */
83 if (sem_getvalue (s
, &val
) == -1)
85 puts ("getvalue failed");
90 printf ("initial value wrong: got %d, expected 1\n", val
);
94 if (TEMP_FAILURE_RETRY (sem_wait (s
)) == -1)
96 puts ("1st sem_wait failed");
103 printf ("fork failed: %m\n");
111 /* Check the value. */
112 if (sem_getvalue (s
, &val
) == -1)
114 puts ("child: getvalue failed");
119 printf ("child: value wrong: got %d, expect 0\n", val
);
123 if (sem_post (s
) == -1)
125 puts ("child: post failed");
131 if (TEMP_FAILURE_RETRY (sem_wait (s
)) == -1)
133 puts ("2nd sem_wait failed");
137 if (sem_getvalue (s
, &val
) == -1)
139 puts ("parent: 2nd getvalue failed");
144 printf ("parent: value wrong: got %d, expected 0\n", val
);
152 #define TEST_FUNCTION do_test ()
153 #include "../test-skeleton.c"