]> code.delx.au - pulseaudio/blob - src/pulsecore/thread-mq.h
remap: Change remapping function argument type from void to int16_t / float as approp...
[pulseaudio] / src / pulsecore / thread-mq.h
1 #ifndef foopulsethreadmqhfoo
2 #define foopulsethreadmqhfoo
3
4 /***
5 This file is part of PulseAudio.
6
7 Copyright 2004-2006 Lennart Poettering
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.1 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 Lesser 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/mainloop-api.h>
26 #include <pulsecore/asyncmsgq.h>
27 #include <pulsecore/rtpoll.h>
28
29 /* Two way communication between a thread and a mainloop. Before the
30 * thread is started a pa_thread_mq should be initialized and than
31 * attached to the thread using pa_thread_mq_install(). */
32
33 typedef struct pa_thread_mq {
34 pa_mainloop_api *main_mainloop;
35 pa_mainloop_api *thread_mainloop;
36 pa_asyncmsgq *inq, *outq;
37 pa_io_event *read_main_event, *write_main_event;
38 pa_io_event *read_thread_event, *write_thread_event;
39 } pa_thread_mq;
40
41 void pa_thread_mq_init(pa_thread_mq *q, pa_mainloop_api *mainloop, pa_rtpoll *rtpoll);
42 void pa_thread_mq_init_thread_mainloop(pa_thread_mq *q, pa_mainloop_api *main_mainloop, pa_mainloop_api *thread_mainloop);
43 void pa_thread_mq_done(pa_thread_mq *q);
44
45 /* Install the specified pa_thread_mq object for the current thread */
46 void pa_thread_mq_install(pa_thread_mq *q);
47
48 /* Return the pa_thread_mq object that is set for the current thread */
49 pa_thread_mq *pa_thread_mq_get(void);
50
51 /* Verify that we are in control context (aka 'main context'). */
52 #define pa_assert_ctl_context(s) \
53 pa_assert(!pa_thread_mq_get())
54
55 /* Verify that we are in IO context (aka 'thread context'). */
56 #define pa_assert_io_context(s) \
57 pa_assert(pa_thread_mq_get())
58
59 #endif