Merge branch 'thread-pool-initialization-logic' into 'master'

Fix initialization logic of GThreadPool if the first created pool is an exclusive one

Closes #2012

See merge request GNOME/glib!1340
This commit is contained in:
Philip Withnall 2020-01-27 09:39:59 +00:00
commit 93607c4137

View File

@ -579,42 +579,41 @@ g_thread_pool_new (GFunc func,
G_LOCK (init); G_LOCK (init);
if (!unused_thread_queue) if (!unused_thread_queue)
{
unused_thread_queue = g_async_queue_new (); unused_thread_queue = g_async_queue_new ();
/* For the very first non-exclusive thread-pool we remember the thread
* scheduler settings of the thread creating the pool, if supported by /* For the very first non-exclusive thread-pool we remember the thread
* the GThread implementation. This is then used for making sure that * scheduler settings of the thread creating the pool, if supported by
* all threads created on the non-exclusive thread-pool have the same * the GThread implementation. This is then used for making sure that
* scheduler settings, and more importantly don't just inherit them * all threads created on the non-exclusive thread-pool have the same
* from the thread that just happened to push a new task and caused * scheduler settings, and more importantly don't just inherit them
* a new thread to be created. * from the thread that just happened to push a new task and caused
* * a new thread to be created.
* Not doing so could cause real-time priority threads or otherwise *
* threads with problematic scheduler settings to be part of the * Not doing so could cause real-time priority threads or otherwise
* non-exclusive thread-pools. * threads with problematic scheduler settings to be part of the
* * non-exclusive thread-pools.
* If this is not supported by the GThread implementation then we here *
* start a thread that will inherit the scheduler settings from this * If this is not supported by the GThread implementation then we here
* very thread and whose only purpose is to spawn new threads with the * start a thread that will inherit the scheduler settings from this
* same settings for use by the non-exclusive thread-pools. * very thread and whose only purpose is to spawn new threads with the
* * same settings for use by the non-exclusive thread-pools.
* *
* For non-exclusive thread-pools this is not required as all threads *
* are created immediately below and are running forever, so they will * For non-exclusive thread-pools this is not required as all threads
* automatically inherit the scheduler settings from this very thread. * are created immediately below and are running forever, so they will
*/ * automatically inherit the scheduler settings from this very thread.
if (!exclusive) */
if (!exclusive && !have_shared_thread_scheduler_settings && !spawn_thread_queue)
{
if (g_thread_get_scheduler_settings (&shared_thread_scheduler_settings))
{ {
if (g_thread_get_scheduler_settings (&shared_thread_scheduler_settings)) have_shared_thread_scheduler_settings = TRUE;
{ }
have_shared_thread_scheduler_settings = TRUE; else
} {
else spawn_thread_queue = g_async_queue_new ();
{ g_cond_init (&spawn_thread_cond);
spawn_thread_queue = g_async_queue_new (); g_thread_new ("pool-spawner", g_thread_pool_spawn_thread, NULL);
g_cond_init (&spawn_thread_cond);
g_thread_new ("pool-spawner", g_thread_pool_spawn_thread, NULL);
}
} }
} }
G_UNLOCK (init); G_UNLOCK (init);