1 /* Copyright (C) 2005-2018 Free Software Foundation, Inc.
2 Contributed by Richard Henderson <rth@redhat.com>.
4 This file is part of the GNU Offloading and Multi Processing Library
7 Libgomp is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 Under Section 7 of GPL version 3, you are granted additional
18 permissions described in the GCC Runtime Library Exception, version
19 3.1, as published by the Free Software Foundation.
21 You should have received a copy of the GNU General Public License and
22 a copy of the GCC Runtime Library Exception along with this program;
23 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 <http://www.gnu.org/licenses/>. */
26 /* This is the default POSIX 1003.1b implementation of a semaphore
27 synchronization mechanism for libgomp. This type is private to
30 This is a bit heavy weight for what we need, in that we're not
31 interested in sem_wait as a cancelation point, but it's not too
36 #ifdef HAVE_BROKEN_POSIX_SEMAPHORES
39 void gomp_sem_init (gomp_sem_t
*sem
, int value
)
43 ret
= pthread_mutex_init (&sem
->mutex
, NULL
);
47 ret
= pthread_cond_init (&sem
->cond
, NULL
);
54 void gomp_sem_wait (gomp_sem_t
*sem
)
58 ret
= pthread_mutex_lock (&sem
->mutex
);
65 ret
= pthread_mutex_unlock (&sem
->mutex
);
69 while (sem
->value
<= 0)
71 ret
= pthread_cond_wait (&sem
->cond
, &sem
->mutex
);
74 pthread_mutex_unlock (&sem
->mutex
);
80 ret
= pthread_mutex_unlock (&sem
->mutex
);
84 void gomp_sem_post (gomp_sem_t
*sem
)
88 ret
= pthread_mutex_lock (&sem
->mutex
);
94 ret
= pthread_mutex_unlock (&sem
->mutex
);
98 ret
= pthread_cond_signal (&sem
->cond
);
103 void gomp_sem_destroy (gomp_sem_t
*sem
)
107 ret
= pthread_mutex_destroy (&sem
->mutex
);
111 ret
= pthread_cond_destroy (&sem
->cond
);
115 #else /* HAVE_BROKEN_POSIX_SEMAPHORES */
117 gomp_sem_wait (gomp_sem_t
*sem
)
119 /* With POSIX, the wait can be canceled by signals. We don't want that.
120 It is expected that the return value here is -1 and errno is EINTR. */
121 while (sem_wait (sem
) != 0)