This is the mail archive of the ecos-discuss@sources.redhat.com mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] CYGIMP_KERNEL_SCHED_SORTED_QUEUES flaws.


Index: packages/kernel/current/cdl/scheduler.cdl
===================================================================
RCS file: /cvs/ecos/ecos/packages/kernel/current/cdl/scheduler.cdl,v
retrieving revision 1.8
diff -a -u -r1.8 scheduler.cdl
--- packages/kernel/current/cdl/scheduler.cdl   24 Feb 2003 14:06:55 -0000     1.8
+++ packages/kernel/current/cdl/scheduler.cdl   14 Dec 2004 18:11:20 -0000
@@ -156,13 +156,13 @@
 
         
     cdl_option CYGIMP_KERNEL_SCHED_SORTED_QUEUES {
-        display       "Dequeue oldest threads first"
+        display       "Dequeue highest priority threads first"
         flavor        bool
         default_value 0
         description   "
             With this option enabled, threads queued in a thread queue
-            will be dequeued in priority order, rather than last in,
-            first out (LIFO). Threads of equal priority are dequeued
+            will be dequeued in priority order, rather than first in,
+            first out (FIFO). Threads of equal priority are dequeued
             oldest first. The only exception is the scheduler run 
             queues where order is less important as each is already
             sorted by priority. Note that this makes the thread queueing

-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]