Home
last modified time | relevance | path

Searched refs:spawn_thread_queue (Results 1 – 2 of 2) sorted by relevance

/third_party/glib/glib/
Dgthreadpool.c129 static GAsyncQueue *spawn_thread_queue; variable
310 g_async_queue_lock (spawn_thread_queue); in g_thread_pool_spawn_thread()
315 spawn_thread_data = g_async_queue_pop_unlocked (spawn_thread_queue); in g_thread_pool_spawn_thread()
322 g_async_queue_unlock (spawn_thread_queue); in g_thread_pool_spawn_thread()
483 g_async_queue_lock (spawn_thread_queue); in g_thread_pool_start_thread()
485 g_async_queue_push_unlocked (spawn_thread_queue, &spawn_thread_data); in g_thread_pool_start_thread()
488 g_cond_wait (&spawn_thread_cond, _g_async_queue_get_mutex (spawn_thread_queue)); in g_thread_pool_start_thread()
493 g_async_queue_unlock (spawn_thread_queue); in g_thread_pool_start_thread()
610 if (!exclusive && !have_shared_thread_scheduler_settings && !spawn_thread_queue) in g_thread_pool_new()
618 spawn_thread_queue = g_async_queue_new (); in g_thread_pool_new()
/third_party/glib/
DNEWS1069 - #2012 spawn_thread_queue not initialised in GThreadPool