summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/schedulersimple.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2011-05-24 02:44:58 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2011-05-24 02:44:58 +0000
commitdacdda304b8a7a2a10bc03ae36b1d75b728ba149 (patch)
treeb709b10d06bb4303fcf2f08511ca096ea2d5a0aa /cpukit/score/include/rtems/score/schedulersimple.h
parent2011-05-23 Jennifer Averett <Jennifer.Averett@OARcorp.com> (diff)
downloadrtems-dacdda304b8a7a2a10bc03ae36b1d75b728ba149.tar.bz2
Remove white-spaces.
Diffstat (limited to 'cpukit/score/include/rtems/score/schedulersimple.h')
-rw-r--r--cpukit/score/include/rtems/score/schedulersimple.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/cpukit/score/include/rtems/score/schedulersimple.h b/cpukit/score/include/rtems/score/schedulersimple.h
index 0e2187f10d..d81939e49c 100644
--- a/cpukit/score/include/rtems/score/schedulersimple.h
+++ b/cpukit/score/include/rtems/score/schedulersimple.h
@@ -53,7 +53,7 @@ extern "C" {
void _Scheduler_simple_Initialize( void );
/**
- * This routine sets the heir thread to be the next ready thread
+ * This routine sets the heir thread to be the next ready thread
* on the ready queue by getting the first node in the scheduler
* information.
*/
@@ -62,41 +62,41 @@ void _Scheduler_simple_Schedule( void );
/**
* This routine is invoked when a thread wishes to voluntarily
* transfer control of the processor to another thread in the queue.
- * It will remove the running THREAD from the scheduler.informaiton
- * (where the ready queue is stored) and place it immediately at the
- * between the last entry of its priority and the next priority thread.
- * Reset timeslice and yield the processor functions both use this routine,
- * therefore if reset is true and this is the only thread on the queue then
+ * It will remove the running THREAD from the scheduler.informaiton
+ * (where the ready queue is stored) and place it immediately at the
+ * between the last entry of its priority and the next priority thread.
+ * Reset timeslice and yield the processor functions both use this routine,
+ * therefore if reset is true and this is the only thread on the queue then
* the timeslice counter is reset. The heir THREAD will be updated if the
* running is also the currently the heir.
*/
void _Scheduler_simple_Yield( void );
/**
- * This routine removes @a the_thread from the scheduling decision,
+ * This routine removes @a the_thread from the scheduling decision,
* that is, removes it from the ready queue. It performs
* any necessary scheduling operations including the selection of
* a new heir thread.
*
* @param[in] the_thread is the thread that is to be blocked
*/
-void _Scheduler_simple_Block(
- Thread_Control *the_thread
+void _Scheduler_simple_Block(
+ Thread_Control *the_thread
);
/**
- * This routine adds @a the_thread to the scheduling decision,
- * that is, adds it to the ready queue and
+ * This routine adds @a the_thread to the scheduling decision,
+ * that is, adds it to the ready queue and
* updates any appropriate scheduling variables, for example the heir thread.
*
* @param[in] the_thread is the thread that is to be unblocked
*/
void _Scheduler_simple_Unblock(
- Thread_Control *the_thread
+ Thread_Control *the_thread
);
/**
- * This routine removes a specific thread from the specified
+ * This routine removes a specific thread from the specified
* simple-based ready queue.
*
* @param[in] the_thread is the thread to be blocked
@@ -115,7 +115,7 @@ void _Scheduler_simple_Enqueue(
);
/**
- * This routine puts @a the_thread to the head of the ready queue.
+ * This routine puts @a the_thread to the head of the ready queue.
* The thread will be the first thread at its priority level.
*
* @param[in] the_thread is the thread to be blocked
@@ -135,7 +135,7 @@ void _Scheduler_simple_Enqueue_first(
* @return this routine returns -1 since this is just an empty placeholder
* and the return value may be defined differently by each scheduler.
*/
-void *_Scheduler_simple_Allocate(
+void *_Scheduler_simple_Allocate(
Thread_Control *the_thread
);
@@ -146,7 +146,7 @@ void *_Scheduler_simple_Allocate(
*
* @param[in] the_thread is the thread to be blocked
*/
-void _Scheduler_simple_Update(
+void _Scheduler_simple_Update(
Thread_Control *the_thread
);
@@ -157,7 +157,7 @@ void _Scheduler_simple_Update(
*
* @param[in] the_thread is the thread to be blocked
*/
-void _Scheduler_simple_Free(
+void _Scheduler_simple_Free(
Thread_Control *the_thread
);
@@ -166,7 +166,7 @@ void _Scheduler_simple_Free(
*
* This routine puts @a the_thread on the ready queue
* at the end of its priority group.
- *
+ *
* @param[in] the_thread - pointer to a thread control block
*/
void _Scheduler_simple_Ready_queue_enqueue(
@@ -178,7 +178,7 @@ void _Scheduler_simple_Ready_queue_enqueue(
*
* This routine puts @a the_thread on to the ready queue
* at the beginning of its priority group.
- *
+ *
* @param[in] the_thread - pointer to a thread control block
*/
void _Scheduler_simple_Ready_queue_enqueue_first(