Lines Matching refs:thread
4 * gthread.c: posix thread system implementation
145 pthread_getprio (*(pthread_t*)thread,
308 gpointer thread,
355 ret = posix_error (pthread_create (thread, &attr,
363 "Error creating thread: %s", g_strerror (ret));
371 posix_check_cmd (pthread_detach (thread));
382 g_thread_join_posix_impl (gpointer thread)
385 posix_check_cmd (pthread_join (*(pthread_t*)thread, &ignore));
395 g_thread_set_priority_posix_impl (gpointer thread, GThreadPriority priority)
404 posix_check_cmd (pthread_getschedparam (*(pthread_t*)thread, &policy,
407 posix_check_cmd_prio (pthread_setschedparam (*(pthread_t*)thread, policy,
411 posix_check_cmd_prio (pthread_setprio (*(pthread_t*)thread,
418 g_thread_self_posix_impl (gpointer thread)
420 *(pthread_t*)thread = pthread_self();