mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-25 03:32:12 +01:00
thread: Remove the zero_thread
This was only used for redundant assertion checks.
This commit is contained in:
parent
2b281e40f3
commit
ed35d2719b
@ -148,8 +148,6 @@ guint64 (*g_thread_gettime) (void) = gettime;
|
||||
|
||||
/* Initialisation {{{1 ---------------------------------------------------- */
|
||||
gboolean g_threads_got_initialized = TRUE;
|
||||
GSystemThread zero_thread; /* This is initialized to all zero */
|
||||
|
||||
|
||||
/**
|
||||
* g_thread_init:
|
||||
|
@ -677,12 +677,8 @@ g_thread_cleanup (gpointer data)
|
||||
* If it is, the structure is freed in g_thread_join()
|
||||
*/
|
||||
if (!thread->thread.joinable)
|
||||
{
|
||||
/* Just to make sure, this isn't used any more */
|
||||
g_system_thread_assign (thread->system_thread, zero_thread);
|
||||
g_free (thread);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static gpointer
|
||||
@ -891,7 +887,6 @@ g_thread_join (GThread *thread)
|
||||
|
||||
g_return_val_if_fail (thread, NULL);
|
||||
g_return_val_if_fail (thread->joinable, NULL);
|
||||
g_return_val_if_fail (!g_system_thread_equal (&real->system_thread, &zero_thread), NULL);
|
||||
|
||||
g_system_thread_join (&real->system_thread);
|
||||
|
||||
@ -899,7 +894,6 @@ g_thread_join (GThread *thread)
|
||||
|
||||
/* Just to make sure, this isn't used any more */
|
||||
thread->joinable = 0;
|
||||
g_system_thread_assign (real->system_thread, zero_thread);
|
||||
|
||||
/* the thread structure for non-joinable threads is freed upon
|
||||
* thread end. We free the memory here. This will leave a loose end,
|
||||
|
@ -72,7 +72,6 @@ struct _GRealThread
|
||||
GSystemThread system_thread;
|
||||
};
|
||||
|
||||
G_GNUC_INTERNAL extern GSystemThread zero_thread;
|
||||
G_GNUC_INTERNAL extern GMutex g_once_mutex;
|
||||
|
||||
/* initializers that may also use g_private_new() */
|
||||
|
Loading…
x
Reference in New Issue
Block a user