mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-12-07 17:14:49 +01:00
remove 'joinable' parameter to backends
Both backends are now oblivious to the concept of joinability, so don't bother passing the parameter.
This commit is contained in:
@@ -809,7 +809,7 @@ g_thread_new_internal (const gchar *name,
|
||||
g_return_val_if_fail (func != NULL, NULL);
|
||||
|
||||
G_LOCK (g_thread_new);
|
||||
thread = g_system_thread_new (proxy, stack_size, joinable, error);
|
||||
thread = g_system_thread_new (proxy, stack_size, error);
|
||||
if (thread)
|
||||
{
|
||||
thread->ours = TRUE;
|
||||
|
||||
Reference in New Issue
Block a user