bluetooth: accept temporarily unavailable error
[pulseaudio-mirror.git] / src / pulse / mainloop-api.c
blob4b862f9aa5997ea3796b744b9bf3aaaa80fff106
1 /***
2 This file is part of PulseAudio.
4 Copyright 2004-2006 Lennart Poettering
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as
8 published by the Free Software Foundation; either version 2.1 of the
9 License, or (at your option) any later version.
11 PulseAudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA.
20 ***/
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
26 #include <stdlib.h>
28 #include <pulse/xmalloc.h>
29 #include <pulse/gccmacro.h>
30 #include <pulse/i18n.h>
32 #include <pulsecore/macro.h>
34 #include "mainloop-api.h"
36 struct once_info {
37 void (*callback)(pa_mainloop_api*m, void *userdata);
38 void *userdata;
41 static void once_callback(pa_mainloop_api *m, pa_defer_event *e, void *userdata) {
42 struct once_info *i = userdata;
44 pa_assert(m);
45 pa_assert(i);
47 pa_assert(i->callback);
48 i->callback(m, i->userdata);
50 pa_assert(m->defer_free);
51 m->defer_free(e);
54 static void free_callback(pa_mainloop_api *m, pa_defer_event *e, void *userdata) {
55 struct once_info *i = userdata;
57 pa_assert(m);
58 pa_assert(i);
59 pa_xfree(i);
62 void pa_mainloop_api_once(pa_mainloop_api* m, void (*callback)(pa_mainloop_api *m, void *userdata), void *userdata) {
63 struct once_info *i;
64 pa_defer_event *e;
66 pa_assert(m);
67 pa_assert(callback);
69 pa_init_i18n();
71 i = pa_xnew(struct once_info, 1);
72 i->callback = callback;
73 i->userdata = userdata;
75 pa_assert(m->defer_new);
76 pa_assert_se(e = m->defer_new(m, once_callback, i));
77 m->defer_set_destroy(e, free_callback);