diff --git a/glib/gthread-posix.c b/glib/gthread-posix.c index e8a4b84a9..b23a19a0b 100644 --- a/glib/gthread-posix.c +++ b/glib/gthread-posix.c @@ -497,8 +497,6 @@ g_system_thread_create (GThreadFunc thread_func, gpointer arg, gulong stack_size, gboolean joinable, - gboolean bound, - GThreadPriority priority, gpointer thread, GError **error) { diff --git a/glib/gthread-win32.c b/glib/gthread-win32.c index 2ed1d921b..e4636c45d 100644 --- a/glib/gthread-win32.c +++ b/glib/gthread-win32.c @@ -411,8 +411,6 @@ g_system_thread_create (GThreadFunc func, gpointer data, gulong stack_size, gboolean joinable, - gboolean bound, - GThreadPriority priority, gpointer thread, GError **error) { diff --git a/glib/gthread.c b/glib/gthread.c index 6b79cd2ce..19dc08e79 100644 --- a/glib/gthread.c +++ b/glib/gthread.c @@ -1729,7 +1729,7 @@ g_thread_create_full (GThreadFunc func, result->private_data = NULL; G_LOCK (g_thread); g_system_thread_create (g_thread_create_proxy, result, - stack_size, joinable, 0, 0, + stack_size, joinable, &result->system_thread, &local_error); if (!local_error) { diff --git a/glib/gthreadprivate.h b/glib/gthreadprivate.h index f4d7288a3..707e571dd 100644 --- a/glib/gthreadprivate.h +++ b/glib/gthreadprivate.h @@ -40,8 +40,6 @@ G_GNUC_INTERNAL void g_system_thread_create (GThreadFunc func, gpointer data, gulong stack_size, gboolean joinable, - gboolean bound, - GThreadPriority priority, gpointer thread, GError **error); G_GNUC_INTERNAL gboolean g_system_thread_equal (gpointer thread1,