mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-27 17:52:58 +02:00
thread: nuke the concept of 'joinable'
And remove the 'joinable' argument from g_thread_new() and g_thread_new_full(). Change the wording in the docs. Clarify expectations for (deprecated) g_thread_create().
This commit is contained in:
@@ -128,7 +128,7 @@ create_server (GSocketFamily family,
|
||||
g_socket_listen (server, &error);
|
||||
g_assert_no_error (error);
|
||||
|
||||
data->thread = g_thread_new ("server", server_thread, data, TRUE, &error);
|
||||
data->thread = g_thread_new ("server", server_thread, data, &error);
|
||||
g_assert_no_error (error);
|
||||
|
||||
return data;
|
||||
|
Reference in New Issue
Block a user