]> code.delx.au - pulseaudio/blob - src/pulsecore/thread.h
add accessor functions for the userdata attached to a pa_thread object
[pulseaudio] / src / pulsecore / thread.h
1 #ifndef foopulsethreadhfoo
2 #define foopulsethreadhfoo
3
4 /* $Id$ */
5
6 /***
7 This file is part of PulseAudio.
8
9 PulseAudio is free software; you can redistribute it and/or modify
10 it under the terms of the GNU Lesser General Public License as
11 published by the Free Software Foundation; either version 2 of the
12 License, or (at your option) any later version.
13
14 PulseAudio is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 General Public License for more details.
18
19 You should have received a copy of the GNU Lesser General Public
20 License along with PulseAudio; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 USA.
23 ***/
24
25 #include <pulse/def.h>
26
27 #define PA_THREAD_ONCE_INIT 0
28
29 typedef struct pa_thread pa_thread;
30
31 typedef void (*pa_thread_func_t) (void *userdata);
32 typedef void (*pa_thread_once_func_t) (void);
33 typedef unsigned int pa_thread_once_t;
34
35 pa_thread* pa_thread_new(pa_thread_func_t thread_func, void *userdata);
36 void pa_thread_free(pa_thread *t);
37 int pa_thread_join(pa_thread *t);
38 int pa_thread_is_running(pa_thread *t);
39 pa_thread *pa_thread_self(void);
40 void pa_thread_yield(void);
41 void pa_thread_once(pa_thread_once_t *control, pa_thread_once_func_t once_func);
42
43 void* pa_thread_get_data(pa_thread *t);
44 void pa_thread_set_data(pa_thread *t, void *userdata);
45
46 typedef struct pa_tls pa_tls;
47
48 pa_tls* pa_tls_new(pa_free_cb_t free_cb);
49 void pa_tls_free(pa_tls *t);
50 void * pa_tls_get(pa_tls *t);
51 void *pa_tls_set(pa_tls *t, void *userdata);
52
53 #endif