]> code.delx.au - pulseaudio/blob - src/pulsecore/mutex-posix.c
remaining s/assert/pa_assert/ and refcnt.h modernizations
[pulseaudio] / src / pulsecore / mutex-posix.c
1 /* $Id$ */
2
3 /***
4 This file is part of PulseAudio.
5
6 Copyright 2006 Lennart Poettering
7
8 PulseAudio is free software; you can redistribute it and/or modify
9 it under the terms of the GNU Lesser General Public License as published
10 by the Free Software Foundation; either version 2 of the License,
11 or (at your option) any later version.
12
13 PulseAudio is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with PulseAudio; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21 USA.
22 ***/
23
24 #ifdef HAVE_CONFIG_H
25 #include <config.h>
26 #endif
27
28 #include <pthread.h>
29
30 #include <pulse/xmalloc.h>
31 #include <pulsecore/macro.h>
32
33 #include "mutex.h"
34
35 struct pa_mutex {
36 pthread_mutex_t mutex;
37 };
38
39 struct pa_cond {
40 pthread_cond_t cond;
41 };
42
43 pa_mutex* pa_mutex_new(int recursive) {
44 pa_mutex *m;
45 pthread_mutexattr_t attr;
46
47 pthread_mutexattr_init(&attr);
48
49 if (recursive)
50 pa_assert_se(pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE) == 0);
51
52 m = pa_xnew(pa_mutex, 1);
53 pa_assert_se(pthread_mutex_init(&m->mutex, &attr) == 0);
54 return m;
55 }
56
57 void pa_mutex_free(pa_mutex *m) {
58 pa_assert(m);
59
60 pa_assert_se(pthread_mutex_destroy(&m->mutex) == 0);
61 pa_xfree(m);
62 }
63
64 void pa_mutex_lock(pa_mutex *m) {
65 pa_assert(m);
66
67 pa_assert_se(pthread_mutex_lock(&m->mutex) == 0);
68 }
69
70 void pa_mutex_unlock(pa_mutex *m) {
71 pa_assert(m);
72
73 pa_assert_se(pthread_mutex_unlock(&m->mutex) == 0);
74 }
75
76 pa_cond *pa_cond_new(void) {
77 pa_cond *c;
78
79 c = pa_xnew(pa_cond, 1);
80 pa_assert_se(pthread_cond_init(&c->cond, NULL) == 0);
81 return c;
82 }
83
84 void pa_cond_free(pa_cond *c) {
85 pa_assert(c);
86
87 pa_assert_se(pthread_cond_destroy(&c->cond) == 0);
88 pa_xfree(c);
89 }
90
91 void pa_cond_signal(pa_cond *c, int broadcast) {
92 pa_assert(c);
93
94 if (broadcast)
95 pa_assert_se(pthread_cond_broadcast(&c->cond) == 0);
96 else
97 pa_assert_se(pthread_cond_signal(&c->cond) == 0);
98 }
99
100 int pa_cond_wait(pa_cond *c, pa_mutex *m) {
101 pa_assert(c);
102 pa_assert(m);
103
104 return pthread_cond_wait(&c->cond, &m->mutex);
105 }