aboutsummaryrefslogtreecommitdiffstats
path: root/src/io_thread.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2011-08-24 02:34:28 +0200
committerMax Kellermann <max@duempel.org>2011-08-24 02:55:05 +0200
commite242f3999c7f0219926877e4accf4763fec2972c (patch)
tree1c1631d0fcc231d1ba409cd351d6d932cd2da4bf /src/io_thread.h
parent523f89cc8c661687f2994cafcd6ca7cf40eae49f (diff)
downloadmpd-e242f3999c7f0219926877e4accf4763fec2972c.tar.gz
mpd-e242f3999c7f0219926877e4accf4763fec2972c.tar.xz
mpd-e242f3999c7f0219926877e4accf4763fec2972c.zip
io_thread: new thread for non-blocking background I/O
Try to eliminate the remaining blocking I/O.
Diffstat (limited to 'src/io_thread.h')
-rw-r--r--src/io_thread.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/io_thread.h b/src/io_thread.h
new file mode 100644
index 000000000..53b32f61f
--- /dev/null
+++ b/src/io_thread.h
@@ -0,0 +1,39 @@
+/*
+ * Copyright (C) 2003-2011 The Music Player Daemon Project
+ * http://www.musicpd.org
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#ifndef MPD_IO_THREAD_H
+#define MPD_IO_THREAD_H
+
+#include <glib.h>
+#include <stdbool.h>
+
+void
+io_thread_init(void);
+
+bool
+io_thread_start(GError **error_r);
+
+void
+io_thread_deinit(void);
+
+G_GNUC_PURE
+GMainContext *
+io_thread_context(void);
+
+#endif