mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-01 23:13:40 +02:00
Make sure g_thread_pool_stop_unused_threads() actually stops unused
* glib/gthreadpool.c: Make sure g_thread_pool_stop_unused_threads() actually stops unused threads and global limits (like max idle time and max unused threads) can be set without creating a thread pool first. Fixed #335215 (patch from Chris Wilson). * tests/threadpool-test.c: Added two new tests, tests setting global limits before creating a thread pool. The second test makes sure unused threads are actually stopped when using the g_thread_pool_stop_unused_threads().
This commit is contained in:
@@ -8,8 +8,6 @@
|
||||
#define DEBUG_MSG(x)
|
||||
/* #define DEBUG_MSG(args) g_printerr args ; g_printerr ("\n"); */
|
||||
|
||||
#define RUNS 100
|
||||
|
||||
#define WAIT 5 /* seconds */
|
||||
#define MAX_THREADS 10
|
||||
|
||||
@@ -36,6 +34,116 @@ static GThreadPool *idle_pool = NULL;
|
||||
|
||||
static GMainLoop *main_loop = NULL;
|
||||
|
||||
static void
|
||||
test_thread_functions (void)
|
||||
{
|
||||
gint max_unused_threads;
|
||||
guint max_idle_time;
|
||||
|
||||
/* This function attempts to call functions which don't need a
|
||||
* threadpool to operate to make sure no uninitialised pointers
|
||||
* accessed and no errors occur.
|
||||
*/
|
||||
|
||||
max_unused_threads = 3;
|
||||
|
||||
DEBUG_MSG (("[funcs] Setting max unused threads to %d",
|
||||
max_unused_threads));
|
||||
g_thread_pool_set_max_unused_threads (max_unused_threads);
|
||||
|
||||
DEBUG_MSG (("[funcs] Getting max unused threads = %d",
|
||||
g_thread_pool_get_max_unused_threads ()));
|
||||
g_assert (g_thread_pool_get_max_unused_threads() == max_unused_threads);
|
||||
|
||||
DEBUG_MSG (("[funcs] Getting num unused threads = %d",
|
||||
g_thread_pool_get_num_unused_threads ()));
|
||||
g_assert (g_thread_pool_get_num_unused_threads () == 0);
|
||||
|
||||
DEBUG_MSG (("[funcs] Stopping unused threads"));
|
||||
g_thread_pool_stop_unused_threads ();
|
||||
|
||||
max_idle_time = 10 * G_USEC_PER_SEC;
|
||||
|
||||
DEBUG_MSG (("[funcs] Setting max idle time to %d",
|
||||
max_idle_time));
|
||||
g_thread_pool_set_max_idle_time (max_idle_time);
|
||||
|
||||
DEBUG_MSG (("[funcs] Getting max idle time = %d",
|
||||
g_thread_pool_get_max_idle_time ()));
|
||||
g_assert (g_thread_pool_get_max_idle_time () == max_idle_time);
|
||||
|
||||
DEBUG_MSG (("[funcs] Setting max idle time to 0"));
|
||||
g_thread_pool_set_max_idle_time (0);
|
||||
|
||||
DEBUG_MSG (("[funcs] Getting max idle time = %d",
|
||||
g_thread_pool_get_max_idle_time ()));
|
||||
g_assert (g_thread_pool_get_max_idle_time () == 0);
|
||||
}
|
||||
|
||||
static void
|
||||
test_count_threads_foreach (GThread *thread,
|
||||
guint *count)
|
||||
{
|
||||
++*count;
|
||||
}
|
||||
|
||||
static guint
|
||||
test_count_threads (void)
|
||||
{
|
||||
guint count = 0;
|
||||
|
||||
g_thread_foreach ((GFunc) test_count_threads_foreach, &count);
|
||||
|
||||
/* Exclude main thread */
|
||||
return count - 1;
|
||||
}
|
||||
|
||||
static void
|
||||
test_thread_stop_unused (void)
|
||||
{
|
||||
GThreadPool *pool;
|
||||
guint i;
|
||||
guint limit = 100;
|
||||
|
||||
/* Spawn a few threads. */
|
||||
g_thread_pool_set_max_unused_threads (-1);
|
||||
pool = g_thread_pool_new ((GFunc) g_usleep, NULL, -1, FALSE, NULL);
|
||||
|
||||
for (i = 0; i < limit; i++)
|
||||
g_thread_pool_push (pool, GUINT_TO_POINTER (1000), NULL);
|
||||
|
||||
DEBUG_MSG (("[unused] ===> pushed %d threads onto the idle pool",
|
||||
limit));
|
||||
|
||||
/* Wait for the threads to migrate. */
|
||||
g_usleep (G_USEC_PER_SEC);
|
||||
|
||||
DEBUG_MSG (("[unused] current threads %d",
|
||||
test_count_threads()));
|
||||
|
||||
g_assert (test_count_threads () == limit);
|
||||
|
||||
DEBUG_MSG (("[unused] stopping unused threads"));
|
||||
|
||||
g_thread_pool_stop_unused_threads ();
|
||||
|
||||
DEBUG_MSG (("[unused] waiting ONE second for threads to die"));
|
||||
|
||||
/* Some time for threads to die. */
|
||||
g_usleep (G_USEC_PER_SEC);
|
||||
|
||||
DEBUG_MSG (("[unused] stopped idle threads, %d remain, %d threads still exist",
|
||||
g_thread_pool_get_num_unused_threads (),
|
||||
test_count_threads ()));
|
||||
|
||||
g_assert (g_thread_pool_get_num_unused_threads () == test_count_threads ());
|
||||
g_assert (g_thread_pool_get_num_unused_threads () == 0);
|
||||
|
||||
g_thread_pool_set_max_unused_threads (MAX_THREADS);
|
||||
|
||||
DEBUG_MSG (("[unused] cleaning up thread pool"));
|
||||
g_thread_pool_free (pool, FALSE, TRUE);
|
||||
}
|
||||
|
||||
static void
|
||||
test_thread_pools_entry_func (gpointer data, gpointer user_data)
|
||||
@@ -68,13 +176,15 @@ static void
|
||||
test_thread_pools (void)
|
||||
{
|
||||
GThreadPool *pool1, *pool2, *pool3;
|
||||
guint runs;
|
||||
guint i;
|
||||
|
||||
pool1 = g_thread_pool_new ((GFunc)test_thread_pools_entry_func, NULL, 3, FALSE, NULL);
|
||||
pool2 = g_thread_pool_new ((GFunc)test_thread_pools_entry_func, NULL, 5, TRUE, NULL);
|
||||
pool3 = g_thread_pool_new ((GFunc)test_thread_pools_entry_func, NULL, 7, TRUE, NULL);
|
||||
|
||||
for (i = 0; i < RUNS; i++)
|
||||
runs = 300;
|
||||
for (i = 0; i < runs; i++)
|
||||
{
|
||||
g_thread_pool_push (pool1, GUINT_TO_POINTER (i + 1), NULL);
|
||||
g_thread_pool_push (pool2, GUINT_TO_POINTER (i + 1), NULL);
|
||||
@@ -86,7 +196,7 @@ test_thread_pools (void)
|
||||
g_thread_pool_free (pool2, FALSE, TRUE);
|
||||
g_thread_pool_free (pool3, FALSE, TRUE);
|
||||
|
||||
g_assert (RUNS * 3 == abs_thread_counter + leftover_task_counter);
|
||||
g_assert (runs * 3 == abs_thread_counter + leftover_task_counter);
|
||||
g_assert (running_thread_counter == 0);
|
||||
}
|
||||
|
||||
@@ -283,15 +393,21 @@ test_check_start_and_stop (gpointer user_data)
|
||||
|
||||
switch (test_number) {
|
||||
case 1:
|
||||
test_thread_pools ();
|
||||
test_thread_functions ();
|
||||
break;
|
||||
case 2:
|
||||
test_thread_sort (FALSE);
|
||||
test_thread_stop_unused ();
|
||||
break;
|
||||
case 3:
|
||||
test_thread_sort (TRUE);
|
||||
test_thread_pools ();
|
||||
break;
|
||||
case 4:
|
||||
test_thread_sort (FALSE);
|
||||
break;
|
||||
case 5:
|
||||
test_thread_sort (TRUE);
|
||||
break;
|
||||
case 6:
|
||||
test_thread_idle_time ();
|
||||
break;
|
||||
default:
|
||||
@@ -305,7 +421,7 @@ test_check_start_and_stop (gpointer user_data)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
if (test_number == 1) {
|
||||
if (test_number == 3) {
|
||||
G_LOCK (thread_counter_pools);
|
||||
quit &= running_thread_counter <= 0;
|
||||
DEBUG_MSG (("***** POOL RUNNING THREAD COUNT:%ld",
|
||||
@@ -313,7 +429,7 @@ test_check_start_and_stop (gpointer user_data)
|
||||
G_UNLOCK (thread_counter_pools);
|
||||
}
|
||||
|
||||
if (test_number == 2 || test_number == 3) {
|
||||
if (test_number == 4 || test_number == 5) {
|
||||
G_LOCK (thread_counter_sort);
|
||||
quit &= sort_thread_counter <= 0;
|
||||
DEBUG_MSG (("***** POOL SORT THREAD COUNT:%ld",
|
||||
@@ -321,7 +437,7 @@ test_check_start_and_stop (gpointer user_data)
|
||||
G_UNLOCK (thread_counter_sort);
|
||||
}
|
||||
|
||||
if (test_number == 4) {
|
||||
if (test_number == 6) {
|
||||
guint idle;
|
||||
|
||||
idle = g_thread_pool_get_num_unused_threads ();
|
||||
|
Reference in New Issue
Block a user