2 This file is part of PulseAudio.
4 Copyright 2006 Lennart Poettering
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published
8 by the Free Software Foundation; either version 2.1 of the License,
9 or (at your option) any later version.
11 PulseAudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public License
17 along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
28 #include <semaphore.h>
30 #include <pulse/xmalloc.h>
31 #include <pulsecore/macro.h>
33 #include "semaphore.h"
39 pa_semaphore
* pa_semaphore_new(unsigned value
) {
42 s
= pa_xnew(pa_semaphore
, 1);
43 pa_assert_se(sem_init(&s
->sem
, 0, value
) == 0);
47 void pa_semaphore_free(pa_semaphore
*s
) {
49 pa_assert_se(sem_destroy(&s
->sem
) == 0);
53 void pa_semaphore_post(pa_semaphore
*s
) {
55 pa_assert_se(sem_post(&s
->sem
) == 0);
58 void pa_semaphore_wait(pa_semaphore
*s
) {
63 ret
= sem_wait(&s
->sem
);
64 } while (ret
< 0 && errno
== EINTR
);
69 pa_semaphore
* pa_static_semaphore_get(pa_static_semaphore
*s
, unsigned value
) {
74 /* First, check if already initialized and short cut */
75 if ((m
= pa_atomic_ptr_load(&s
->ptr
)))
78 /* OK, not initialized, so let's allocate, and fill in */
79 m
= pa_semaphore_new(value
);
80 if ((pa_atomic_ptr_cmpxchg(&s
->ptr
, NULL
, m
)))
85 /* Him, filling in failed, so someone else must have filled in
87 pa_assert_se(m
= pa_atomic_ptr_load(&s
->ptr
));