Revert an accidental ABI break by moving gettime out of the

2007-01-16  Matthias Clasen  <mclasen@redhat.com>

        * glib/gthread.h:
        * glib/gthread.c:
        * glib/glib.symbols: Revert an accidental ABI break by
        moving gettime out of the GThreadFunctions struct and making
        it a separate variable.  (#397139, Joe Marcus Clarke)

        * gthread/*.c: Adapt.



svn path=/trunk/; revision=5279
This commit is contained in:
Matthias Clasen
2007-01-16 21:25:03 +00:00
committed by Matthias Clasen
parent 098d17a4fc
commit 4bbde50716
9 changed files with 33 additions and 22 deletions

View File

@@ -546,7 +546,7 @@ g_thread_join_win32_impl (gpointer thread)
}
static guint64
g_gettime_win32_impl (void)
g_thread_gettime_impl (void)
{
guint64 v;
@@ -583,8 +583,7 @@ static GThreadFunctions g_thread_functions_for_glib_use_default =
g_thread_exit_win32_impl,
g_thread_set_priority_win32_impl,
g_thread_self_win32_impl,
NULL, /* no equal function necessary */
g_gettime_win32_impl
NULL /* no equal function necessary */
};
#define HAVE_G_THREAD_IMPL_INIT