From a90a4b967fde1c2d7c7d6d978a797731adb25057 Mon Sep 17 00:00:00 2001 From: Ryan Lortie Date: Wed, 12 Oct 2011 18:33:07 -0400 Subject: [PATCH] thread: reduce use of system_thread The use of system_thread is now limited to joining. We don't do that for threads that we didn't create for ourselves, so we don't need to call g_system_thread_self() to fill in system_thread for those. --- glib/gthread.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/glib/gthread.c b/glib/gthread.c index 470422758..23fd703db 100644 --- a/glib/gthread.c +++ b/glib/gthread.c @@ -928,8 +928,6 @@ g_thread_self (void) thread->thread.func = NULL; thread->thread.data = NULL; - g_system_thread_self (&thread->system_thread); - g_private_set (&g_thread_specific_private, thread); }