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:
Ryan Lortie 2011-09-19 00:30:30 -04:00
parent 2b4c303d61
commit b2c1364ab2
4 changed files with 1 additions and 7 deletions

View File

@ -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)
{

View File

@ -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)
{

View File

@ -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)
{

View File

@ -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,