Bug 460920 – build fix for --disable-threads
authorMatthias Clasen <matthiasc@src.gnome.org>
Sun, 17 Aug 2008 01:36:16 +0000 (01:36 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Sun, 17 Aug 2008 01:36:16 +0000 (01:36 +0000)
        * gthread-impl.c: Implement g_thread_init_with_errorcheck_mutexes
        in the !G_THREAD_ENABLED case. Pointed out by Jan Nieuwenhuizen

svn path=/trunk/; revision=7364

gthread/ChangeLog
gthread/gthread-impl.c

index 40969be8b5456bebdeaec5df04ab6b52ecfef807..252d4ffc7ee83f96867bb1a2979e85f20208aced 100644 (file)
@@ -1,3 +1,10 @@
+2008-08-04  Matthias Clasen  <mclasen@redhat.com>
+
+       Bug 460920 – build fix for --disable-threads
+
+       * gthread-impl.c: Implement g_thread_init_with_errorcheck_mutexes
+       in the !G_THREAD_ENABLED case. Pointed out by Jan Nieuwenhuizen
+
 2008-08-04  Matthias Clasen  <mclasen@redhat.com>
 
        * === Released 2.17.6 ===
index 6459077395c41e45fb1199d27fefa8b467776ab1..24eb3c48eb9220d1bc44457237bc16aef05d143a 100644 (file)
@@ -363,4 +363,10 @@ g_thread_init (GThreadFunctions* init)
   g_error ("GLib thread support is disabled.");
 }
 
+void
+g_thread_init_with_errorcheck_mutexes (GThreadFunctions* init)
+{
+  g_error ("GLib thread support is disabled.");
+}
+
 #endif /* !G_THREADS_ENABLED */