aboutsummaryrefslogtreecommitdiffstats
path: root/src/io_thread.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2011-09-20 21:24:59 +0200
committerMax Kellermann <max@duempel.org>2011-09-20 21:26:30 +0200
commit2e83af7c2184829128448a6b2d19a2eb5ab94145 (patch)
tree581e73693c2aafad674767463b1d8a29ca7cbd1e /src/io_thread.c
parenta3f7947ad2e987aaa06a81fe564871448aeb12d2 (diff)
downloadmpd-2e83af7c2184829128448a6b2d19a2eb5ab94145.tar.gz
mpd-2e83af7c2184829128448a6b2d19a2eb5ab94145.tar.xz
mpd-2e83af7c2184829128448a6b2d19a2eb5ab94145.zip
io_thread: _timeout_add_seconds() returns GSource*
The numeric ID isn't so useful.
Diffstat (limited to 'src/io_thread.c')
-rw-r--r--src/io_thread.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/io_thread.c b/src/io_thread.c
index fa6dee337..501cfe50a 100644
--- a/src/io_thread.c
+++ b/src/io_thread.c
@@ -123,15 +123,14 @@ io_thread_idle_add(GSourceFunc function, gpointer data)
return id;
}
-guint
+GSource *
io_thread_timeout_add_seconds(guint interval,
GSourceFunc function, gpointer data)
{
GSource *source = g_timeout_source_new_seconds(interval);
g_source_set_callback(source, function, data, NULL);
- guint id = g_source_attach(source, io.context);
- g_source_unref(source);
- return id;
+ g_source_attach(source, io.context);
+ return source;
}
struct call_data {