mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-27 22:46:15 +01:00
g_system_thread_create: drop unused args
The 'bound' and 'priority' arguments are no longer in use, so drop them.
This commit is contained in:
parent
2b4c303d61
commit
b2c1364ab2
@ -497,8 +497,6 @@ g_system_thread_create (GThreadFunc thread_func,
|
|||||||
gpointer arg,
|
gpointer arg,
|
||||||
gulong stack_size,
|
gulong stack_size,
|
||||||
gboolean joinable,
|
gboolean joinable,
|
||||||
gboolean bound,
|
|
||||||
GThreadPriority priority,
|
|
||||||
gpointer thread,
|
gpointer thread,
|
||||||
GError **error)
|
GError **error)
|
||||||
{
|
{
|
||||||
|
@ -411,8 +411,6 @@ g_system_thread_create (GThreadFunc func,
|
|||||||
gpointer data,
|
gpointer data,
|
||||||
gulong stack_size,
|
gulong stack_size,
|
||||||
gboolean joinable,
|
gboolean joinable,
|
||||||
gboolean bound,
|
|
||||||
GThreadPriority priority,
|
|
||||||
gpointer thread,
|
gpointer thread,
|
||||||
GError **error)
|
GError **error)
|
||||||
{
|
{
|
||||||
|
@ -1729,7 +1729,7 @@ g_thread_create_full (GThreadFunc func,
|
|||||||
result->private_data = NULL;
|
result->private_data = NULL;
|
||||||
G_LOCK (g_thread);
|
G_LOCK (g_thread);
|
||||||
g_system_thread_create (g_thread_create_proxy, result,
|
g_system_thread_create (g_thread_create_proxy, result,
|
||||||
stack_size, joinable, 0, 0,
|
stack_size, joinable,
|
||||||
&result->system_thread, &local_error);
|
&result->system_thread, &local_error);
|
||||||
if (!local_error)
|
if (!local_error)
|
||||||
{
|
{
|
||||||
|
@ -40,8 +40,6 @@ G_GNUC_INTERNAL void g_system_thread_create (GThreadFunc func,
|
|||||||
gpointer data,
|
gpointer data,
|
||||||
gulong stack_size,
|
gulong stack_size,
|
||||||
gboolean joinable,
|
gboolean joinable,
|
||||||
gboolean bound,
|
|
||||||
GThreadPriority priority,
|
|
||||||
gpointer thread,
|
gpointer thread,
|
||||||
GError **error);
|
GError **error);
|
||||||
G_GNUC_INTERNAL gboolean g_system_thread_equal (gpointer thread1,
|
G_GNUC_INTERNAL gboolean g_system_thread_equal (gpointer thread1,
|
||||||
|
Loading…
Reference in New Issue
Block a user