summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-02-21 17:00:51 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-02-21 17:00:51 +0000
commit22c2828292c4e9498ec676adfd318682bb434632 (patch)
tree4f403e645f44375ae32c5429c102f5bcb199fa3a /cpukit
parent2011-02-21 Sebastian Huber <sebastian.huber@embedded-brains.de> (diff)
downloadrtems-22c2828292c4e9498ec676adfd318682bb434632.tar.bz2
2011-02-21 Joel Sherrill <joel.sherrill@oarcorp.com>
* sapi/include/confdefs.h, score/include/rtems/score/schedulerpriority.h: Add comments.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/sapi/include/confdefs.h4
-rw-r--r--cpukit/score/include/rtems/score/schedulerpriority.h24
3 files changed, 19 insertions, 14 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 7bbc8603cd..f9607e2673 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,8 @@
+2011-02-21 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * sapi/include/confdefs.h,
+ score/include/rtems/score/schedulerpriority.h: Add comments.
+
2011-02-21 Sebastian Huber <sebastian.huber@embedded-brains.de>
* sapi/include/confdefs.h,
diff --git a/cpukit/sapi/include/confdefs.h b/cpukit/sapi/include/confdefs.h
index 03b99d3d57..2ac5ab0ee2 100644
--- a/cpukit/sapi/include/confdefs.h
+++ b/cpukit/sapi/include/confdefs.h
@@ -603,8 +603,8 @@ rtems_fs_init_functions_t rtems_fs_init_helper =
*/
#ifdef CONFIGURE_INIT
Scheduler_Control _Scheduler = {
- NULL,
- SCHEDULER_ENTRY_POINTS
+ NULL, /* Scheduler Specific Data Pointer */
+ SCHEDULER_ENTRY_POINTS /* Scheduler Operations */
};
#endif
diff --git a/cpukit/score/include/rtems/score/schedulerpriority.h b/cpukit/score/include/rtems/score/schedulerpriority.h
index a31d10a727..8a7f3aeb9e 100644
--- a/cpukit/score/include/rtems/score/schedulerpriority.h
+++ b/cpukit/score/include/rtems/score/schedulerpriority.h
@@ -34,21 +34,21 @@ extern "C" {
/**@{*/
/**
- * Entry points for Scheduler Priority
+ * Entry points for the Deterministic Priority Based Scheduler.
*/
#define SCHEDULER_PRIORITY_ENTRY_POINTS \
{ \
- _Scheduler_priority_Initialize, \
- _Scheduler_priority_Schedule, \
- _Scheduler_priority_Yield, \
- _Scheduler_priority_Block, \
- _Scheduler_priority_Unblock, \
- _Scheduler_priority_Allocate, \
- _Scheduler_priority_Free, \
- _Scheduler_priority_Update, \
- _Scheduler_priority_Enqueue, \
- _Scheduler_priority_Enqueue_first, \
- _Scheduler_priority_Extract \
+ _Scheduler_priority_Initialize, /* initialize entry point */ \
+ _Scheduler_priority_Schedule, /* schedule entry point */ \
+ _Scheduler_priority_Yield, /* yield entry point */ \
+ _Scheduler_priority_Block, /* block entry point */ \
+ _Scheduler_priority_Unblock, /* unblock entry point */ \
+ _Scheduler_priority_Allocate, /* allocate entry point */ \
+ _Scheduler_priority_Free, /* free entry point */ \
+ _Scheduler_priority_Update, /* update entry point */ \
+ _Scheduler_priority_Enqueue, /* enqueue entry point */ \
+ _Scheduler_priority_Enqueue, /* enqueue_first entry point */ \
+ _Scheduler_priority_Extract /* extract entry point */ \
}
/**