[glib/wip/mutexes: 47/58] NULL g_system_thread_{exit, equal} in the vtable



commit 0efbf3de48bddaf39dc6ca82979f11e613900b1d
Author: Ryan Lortie <desrt desrt ca>
Date:   Mon Sep 19 00:00:12 2011 -0400

    NULL g_system_thread_{exit,equal} in the vtable
    
    These were never used from gthread.h and are no longer used from
    gthread.c.

 glib/gthread-posix.c |    4 ++--
 glib/gthread-win32.c |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/glib/gthread-posix.c b/glib/gthread-posix.c
index 3e7349f..af53ae2 100644
--- a/glib/gthread-posix.c
+++ b/glib/gthread-posix.c
@@ -604,10 +604,10 @@ GThreadFunctions g_thread_functions_for_glib_use =
   NULL,
   g_thread_yield,
   NULL,
-  g_system_thread_exit,
   NULL,
   NULL,
-  g_system_thread_equal,
+  NULL,
+  NULL,
 };
 
 /* vim:set foldmethod=marker: */
diff --git a/glib/gthread-win32.c b/glib/gthread-win32.c
index 97a10d2..7f8fb4f 100644
--- a/glib/gthread-win32.c
+++ b/glib/gthread-win32.c
@@ -771,10 +771,10 @@ GThreadFunctions g_thread_functions_for_glib_use =
   NULL,                  /* thread */
   g_thread_yield,
   NULL,
-  g_system_thread_exit,
   NULL,
   NULL,
-  g_system_thread_equal
+  NULL,
+  NULL
 };
 
 void



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]