[glib: 1/4] glib/tests/thread-pool-slow: Fix indentation in test_thread_stop_unused
- From: Philip Withnall <pwithnall src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib: 1/4] glib/tests/thread-pool-slow: Fix indentation in test_thread_stop_unused
- Date: Tue, 12 Jul 2022 11:44:06 +0000 (UTC)
commit a5ccaa0525ee9dc665522eaeef86d979eac75fa9
Author: Marco Trevisan (TreviƱo) <mail 3v1n0 net>
Date: Mon Jul 11 17:48:44 2022 +0200
glib/tests/thread-pool-slow: Fix indentation in test_thread_stop_unused
It used three-spaces indentation instead of 2, fix it.
glib/tests/thread-pool-slow.c | 38 +++++++++++++++++++-------------------
1 file changed, 19 insertions(+), 19 deletions(-)
---
diff --git a/glib/tests/thread-pool-slow.c b/glib/tests/thread-pool-slow.c
index a5445411d6..3706754c4b 100644
--- a/glib/tests/thread-pool-slow.c
+++ b/glib/tests/thread-pool-slow.c
@@ -76,33 +76,33 @@ thread_wait_func (gpointer data,
static void
test_thread_stop_unused (void)
{
- GThreadPool *pool;
- guint i;
- guint limit = 100;
- guint n_threads_executed = 0;
+ GThreadPool *pool;
+ guint i;
+ guint limit = 100;
+ guint n_threads_executed = 0;
- /* Spawn a few threads. */
- g_thread_pool_set_max_unused_threads (-1);
- pool = g_thread_pool_new (thread_wait_func, &n_threads_executed, -1, FALSE, NULL);
+ /* Spawn a few threads. */
+ g_thread_pool_set_max_unused_threads (-1);
+ pool = g_thread_pool_new (thread_wait_func, &n_threads_executed, -1, FALSE, NULL);
- for (i = 0; i < limit; i++)
- g_thread_pool_push (pool, GUINT_TO_POINTER (1000), NULL);
+ for (i = 0; i < limit; i++)
+ g_thread_pool_push (pool, GUINT_TO_POINTER (1000), NULL);
- /* Wait for the threads to migrate. */
- while ((guint) g_atomic_int_get (&n_threads_executed) < limit)
- g_usleep (100);
+ /* Wait for the threads to migrate. */
+ while ((guint) g_atomic_int_get (&n_threads_executed) < limit)
+ g_usleep (100);
- g_thread_pool_stop_unused_threads ();
+ g_thread_pool_stop_unused_threads ();
- /* Wait for threads to die. */
- while (g_thread_pool_get_num_unused_threads () != 0)
- g_usleep (100);
+ /* Wait for threads to die. */
+ while (g_thread_pool_get_num_unused_threads () != 0)
+ g_usleep (100);
- g_assert_cmpint (g_thread_pool_get_num_unused_threads (), ==, 0);
+ g_assert_cmpint (g_thread_pool_get_num_unused_threads (), ==, 0);
- g_thread_pool_set_max_unused_threads (MAX_THREADS);
+ g_thread_pool_set_max_unused_threads (MAX_THREADS);
- g_thread_pool_free (pool, FALSE, TRUE);
+ g_thread_pool_free (pool, FALSE, TRUE);
}
static void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]