From 8cc5595d9091b484b9a4abe314c0f3ec055e0581 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Sat, 20 Jan 2007 05:26:15 +0000 Subject: Make it possible to support an embedded GLib --- audio/headset.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'audio/headset.c') diff --git a/audio/headset.c b/audio/headset.c index 220562fd..0be529ec 100644 --- a/audio/headset.c +++ b/audio/headset.c @@ -44,11 +44,12 @@ #include #include +#include + #include #include "dbus.h" #include "logging.h" -#include "glib-ectomy.h" #define BUF_SIZE 1024 @@ -347,7 +348,7 @@ static gboolean rfcomm_io_cb(GIOChannel *chan, GIOCondition cond, gpointer user_ } if (hs->ring_timer) { - g_timeout_remove(hs->ring_timer); + g_source_remove(hs->ring_timer); hs->ring_timer = 0; } @@ -752,7 +753,7 @@ failed: static void sig_term(int sig) { - g_main_quit(main_loop); + g_main_loop_quit(main_loop); } static int server_socket(uint8_t *channel) @@ -1371,7 +1372,7 @@ static DBusHandlerResult hs_cancel_ringing(DBusConnection *conn, DBusMessage *ms goto done; } - g_timeout_remove(hs->ring_timer); + g_source_remove(hs->ring_timer); hs->ring_timer = 0; done: @@ -1531,7 +1532,7 @@ int main(int argc, char *argv[]) enable_debug(); - main_loop = g_main_new(FALSE); + main_loop = g_main_loop_new(NULL, FALSE); if (headset_dbus_init(NULL) < 0) { error("Unable to get on D-Bus"); @@ -1540,7 +1541,7 @@ int main(int argc, char *argv[]) create_server_socket(); - g_main_run(main_loop); + g_main_loop_run(main_loop); return 0; } -- cgit