Updated the documentation to explain that when the maximum threads is > 1
authorMartyn James Russell <mr@src.gnome.org>
Fri, 24 Mar 2006 15:21:28 +0000 (15:21 +0000)
committerMartyn James Russell <mr@src.gnome.org>
Fri, 24 Mar 2006 15:21:28 +0000 (15:21 +0000)
* glib/gthreadpool.c: Updated the documentation to explain that
when the maximum threads is > 1 the sort functionality is not 100%
accurate due to the ramdom nature of the scheduler choosing which
threads to execute. Fixes bug #334943.

* tests/threadpool-test.c: Disabled the debugging by default and
fixed the sort test to set the maximum threads to 1 to guarantee
the thread entry function is called in order.

ChangeLog
ChangeLog.pre-2-12
glib/gthreadpool.c
tests/threadpool-test.c

index 796e7c2..abb5d28 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2006-03-24  Martyn Russell  <martyn@imendio.com>
+
+       * glib/gthreadpool.c: Updated the documentation to explain that
+       when the maximum threads is > 1 the sort functionality is not 100%
+       accurate due to the ramdom nature of the scheduler choosing which
+       threads to execute. Fixes bug #334943.
+
+       * tests/threadpool-test.c: Disabled the debugging by default and
+       fixed the sort test to set the maximum threads to 1 to guarantee
+       the thread entry function is called in order. 
+
 2006-03-23  Matthias Clasen  <mclasen@redhat.com> 
 
        === Branch for 2.10 ===
index 796e7c2..abb5d28 100644 (file)
@@ -1,3 +1,14 @@
+2006-03-24  Martyn Russell  <martyn@imendio.com>
+
+       * glib/gthreadpool.c: Updated the documentation to explain that
+       when the maximum threads is > 1 the sort functionality is not 100%
+       accurate due to the ramdom nature of the scheduler choosing which
+       threads to execute. Fixes bug #334943.
+
+       * tests/threadpool-test.c: Disabled the debugging by default and
+       fixed the sort test to set the maximum threads to 1 to guarantee
+       the thread entry function is called in order. 
+
 2006-03-23  Matthias Clasen  <mclasen@redhat.com> 
 
        === Branch for 2.10 ===
index db8181f..685a314 100644 (file)
@@ -817,6 +817,12 @@ g_thread_pool_stop_unused_threads (void)
  * tasks to be processed by a priority determined by @func, and not
  * just in the order in which they were added to the pool.
  *
+ * Note, if the maximum number of threads is more than 1, the order
+ * that threads are executed can not be guranteed 100%. Threads are
+ * scheduled by the operating system and are executed at random. It
+ * cannot be assumed that threads are executed in the order they are
+ * created. 
+ *
  * Since: 2.10
  **/
 void 
index a8585c1..970bc32 100644 (file)
@@ -5,8 +5,8 @@
 
 #include <glib.h>
 
-/* #define DEBUG_MSG(x) */
-#define DEBUG_MSG(args) g_printerr args ; g_printerr ("\n");
+#define DEBUG_MSG(x)  
+/* #define DEBUG_MSG(args) g_printerr args ; g_printerr ("\n");  */
 
 #define RUNS 100
 
@@ -124,10 +124,11 @@ test_thread_sort_entry_func (gpointer data, gpointer user_data)
        g_assert (last_thread_id <= thread_id);  
       }
 
-      /* here we remember one fail and if it concurrently fails, it
-        can not be sorted. the last thread id might be < this thread
-        id if something is added to the queue since threads were
-        created */
+      /* Here we remember one fail and if it concurrently fails, it
+       * can not be sorted. the last thread id might be < this thread
+       * id if something is added to the queue since threads were
+       * created  
+       */
       last_failed = TRUE;
     } else {
       last_failed = FALSE;
@@ -145,12 +146,29 @@ static void
 test_thread_sort (gboolean sort)
 {
   GThreadPool *pool;
-  guint limit = 20;
+  guint limit;
+  guint max_threads;
   gint i;
 
+  limit = MAX_THREADS * 10;
+
+  if (sort) {
+    max_threads = 1;
+  } else {
+    max_threads = MAX_THREADS;
+  }
+
+  /* It is important that we only have a maximum of 1 thread for this
+   * test since the results can not be guranteed to be sorted if > 1.
+   * 
+   * Threads are scheduled by the operating system and are executed at
+   * random. It cannot be assumed that threads are executed in the
+   * order they are created. This was discussed in bug #334943.
+   */
+  
   pool = g_thread_pool_new (test_thread_sort_entry_func, 
                            GINT_TO_POINTER (sort), 
-                           MAX_THREADS,
+                           max_threads, 
                            FALSE,
                            NULL);
 
@@ -165,10 +183,17 @@ test_thread_sort (gboolean sort)
   for (i = 0; i < limit; i++) {
     guint id;
 
-    id = g_random_int_range (1, limit*2);
-    g_thread_pool_push (pool, GUINT_TO_POINTER (id + 1), NULL);
+    id = g_random_int_range (1, limit) + 1;
+    g_thread_pool_push (pool, GUINT_TO_POINTER (id), NULL);
+    DEBUG_MSG (("%s ===> pushed new thread with id:%d, number "
+               "of threads:%d, unprocessed:%d",
+               sort ? "[  sorted]" : "[unsorted]", 
+               id, 
+               g_thread_pool_get_num_threads (pool),
+               g_thread_pool_unprocessed (pool)));
   }
 
+  g_assert (g_thread_pool_get_max_threads (pool) == max_threads);
   g_assert (g_thread_pool_get_num_threads (pool) == g_thread_pool_get_max_threads (pool));
 }