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