From: Ryan Lortie Date: Mon, 19 Sep 2011 05:02:44 +0000 (-0400) Subject: g_thread_init: take a gpointer as the arg X-Git-Tag: 2.31.0~415 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=97972fbb3a1d9234fbb5753802afd0c13db45f25;p=platform%2Fupstream%2Fglib.git g_thread_init: take a gpointer as the arg GThreadFunctions is about to disappear. --- diff --git a/glib/gthread.h b/glib/gthread.h index a1c9c3d..928fb99 100644 --- a/glib/gthread.h +++ b/glib/gthread.h @@ -158,7 +158,7 @@ GLIB_VAR guint64 (*g_thread_gettime) (void); * only be called once, and must not be called directly or indirectly * from another glib-function, e.g. as a callback. */ -void g_thread_init (GThreadFunctions *vtable); +void g_thread_init (gpointer vtable); /* Checks if thread support is initialized. Identical to the * g_thread_supported macro but provided for language bindings. diff --git a/gthread/gthread-impl.c b/gthread/gthread-impl.c index 123faa0..b623e12 100644 --- a/gthread/gthread-impl.c +++ b/gthread/gthread-impl.c @@ -36,7 +36,7 @@ #include "gthreadprivate.h" void -g_thread_init (GThreadFunctions *init) +g_thread_init (gpointer init) { static gboolean already_done; @@ -52,7 +52,7 @@ g_thread_init (GThreadFunctions *init) } void -g_thread_init_with_errorcheck_mutexes (GThreadFunctions *vtable) +g_thread_init_with_errorcheck_mutexes (gpointer vtable) { g_assert (vtable == NULL);