g_system_thread_create: drop 'data' arg

Since it's now always the same as the 'thread' arg.
This commit is contained in:
Ryan Lortie
2011-10-12 22:23:12 -04:00
parent 3237eaf5d5
commit a3f82c847f
4 changed files with 3 additions and 6 deletions

View File

@@ -1083,7 +1083,6 @@ g_system_thread_free (GRealThread *thread)
void
g_system_thread_create (GThreadFunc thread_func,
gpointer arg,
gulong stack_size,
gboolean joinable,
GRealThread *thread,
@@ -1111,7 +1110,7 @@ g_system_thread_create (GThreadFunc thread_func,
posix_check_cmd (pthread_attr_setdetachstate (&attr,
joinable ? PTHREAD_CREATE_JOINABLE : PTHREAD_CREATE_DETACHED));
ret = pthread_create ((pthread_t *) &(thread->system_thread), &attr, (void* (*)(void*))thread_func, arg);
ret = pthread_create ((pthread_t *) &(thread->system_thread), &attr, (void* (*)(void*))thread_func, thread);
posix_check_cmd (pthread_attr_destroy (&attr));