]> code.delx.au - pulseaudio/blob - src/pulsecore/thread.h
Huge trailing whitespace cleanup. Let's keep the tree pure from here on,
[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 typedef struct pa_thread pa_thread;
28
29 typedef void (*pa_thread_func_t) (void *userdata);
30
31 pa_thread* pa_thread_new(pa_thread_func_t thread_func, void *userdata);
32 void pa_thread_free(pa_thread *t);
33 int pa_thread_join(pa_thread *t);
34 int pa_thread_is_running(pa_thread *t);
35 pa_thread *pa_thread_self(void);
36 void pa_thread_yield(void);
37
38 void* pa_thread_get_data(pa_thread *t);
39 void pa_thread_set_data(pa_thread *t, void *userdata);
40
41 typedef struct pa_tls pa_tls;
42
43 pa_tls* pa_tls_new(pa_free_cb_t free_cb);
44 void pa_tls_free(pa_tls *t);
45 void * pa_tls_get(pa_tls *t);
46 void *pa_tls_set(pa_tls *t, void *userdata);
47
48 #endif