2 This file is part of PulseAudio.
4 PulseAudio is free software; you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as published
6 by the Free Software Foundation; either version 2.1 of the License,
7 or (at your option) any later version.
9 PulseAudio is distributed in the hope that it will be useful, but
10 WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public License
15 along with PulseAudio; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
24 #include <pulsecore/thread.h>
25 #include <pulsecore/mutex.h>
26 #include <pulsecore/once.h>
27 #include <pulsecore/log.h>
28 #include <pulsecore/core-util.h>
29 #include <pulse/xmalloc.h>
31 static pa_mutex
*mutex
= NULL
;
32 static pa_cond
*cond1
= NULL
, *cond2
= NULL
;
33 static pa_tls
*tls
= NULL
;
35 static int magic_number
= 0;
37 #define THREADS_MAX 20
39 static void once_func(void) {
43 static pa_once once
= PA_ONCE_INIT
;
45 static void thread_func(void *data
) {
46 pa_tls_set(tls
, data
);
48 pa_log("thread_func() for %s starting...", (char*) pa_tls_get(tls
));
55 pa_log("%s waiting ...", (char*) pa_tls_get(tls
));
62 if (magic_number
!= 0)
65 pa_cond_wait(cond1
, mutex
);
71 pa_mutex_unlock(mutex
);
73 pa_run_once(&once
, once_func
);
75 pa_cond_signal(cond2
, 0);
77 pa_log("%s got number %i", (char*) pa_tls_get(tls
), k
);
80 for (n
= 0; n
< k
; n
++)
88 pa_mutex_unlock(mutex
);
90 pa_log("thread_func() for %s done...", (char*) pa_tls_get(tls
));
93 int main(int argc
, char *argv
[]) {
95 pa_thread
* t
[THREADS_MAX
];
97 mutex
= pa_mutex_new(FALSE
, FALSE
);
98 cond1
= pa_cond_new();
99 cond2
= pa_cond_new();
100 tls
= pa_tls_new(pa_xfree
);
102 for (i
= 0; i
< THREADS_MAX
; i
++) {
103 t
[i
] = pa_thread_new("test", thread_func
, pa_sprintf_malloc("Thread #%i", i
+1));
107 pa_mutex_lock(mutex
);
111 for (k
= 0; k
< 100; k
++) {
112 assert(magic_number
== 0);
115 magic_number
= (int) rand() % 0x10000;
117 pa_log("iteration %i (%i)", k
, magic_number
);
119 pa_cond_signal(cond1
, 0);
121 pa_cond_wait(cond2
, mutex
);
127 pa_cond_signal(cond1
, 1);
129 pa_mutex_unlock(mutex
);
131 for (i
= 0; i
< THREADS_MAX
; i
++)
132 pa_thread_free(t
[i
]);
134 pa_mutex_free(mutex
);