diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-05-17 15:02:27 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-05-17 15:02:27 +0000 |
commit | 88d93ba5bf533bfd49df40ba7998b747d1fbadc2 (patch) | |
tree | e703857828054fb8c644674b2445c3b542f2120b /docs/src/roundrobin.dox | |
parent | b5b34a5b9b97fa19bac7c5c830885c757223bbe2 (diff) | |
download | ChibiOS-88d93ba5bf533bfd49df40ba7998b747d1fbadc2.tar.gz ChibiOS-88d93ba5bf533bfd49df40ba7998b747d1fbadc2.tar.bz2 ChibiOS-88d93ba5bf533bfd49df40ba7998b747d1fbadc2.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1931 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'docs/src/roundrobin.dox')
-rw-r--r-- | docs/src/roundrobin.dox | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/src/roundrobin.dox b/docs/src/roundrobin.dox index 8158a5c03..df57ec971 100644 --- a/docs/src/roundrobin.dox +++ b/docs/src/roundrobin.dox @@ -23,27 +23,27 @@ * same priority level and schedules them using an <i>aggressive</i>
* round-robin strategy.<br>
* The strategy is defined as aggressive because any scheduling event
- * can cause the round-robin threads to rotate.<br>
+ * causes the round-robin threads to rotate.<br>
* A round-robin rotation can happen because of the following events:
* - The currently executed thread voluntarily invokes the @p chThdYield()
* API in order to allow the execution of another thread at the same
* priority level, if any.
* - The currently executed thread voluntarily goes into a sleep state
- * (see @ref thread_states), when the thread is waken it goes behind
- * all the other threads at the same priority level.
+ * (see @ref thread_states), when the thread is awakened it goes behind
+ * any other thread at the same priority level.
* - The currently executed thread is preempted by an higher priority
* thread, the thread is reinserted in the ready list (see @ref scheduling)
- * behind all the other threads at the same priority level.
+ * behind any other thread at the same priority level.
* - If the @p CH_TIME_QUANTUM configuration constant is set to a value
* greater than zero and if the specified time quantum expired and if
* a thread with equal priority is ready then the currently executing
- * thread is automatically reinserted in the ready list behind all the
- * other threads at the same priority level.
+ * thread is automatically reinserted in the ready list behind any
+ * other thread at the same priority level.
* .
* As you can see the @p CH_TIME_QUANTUM setting is really useful only if
* there are threads at the same priority level that can run not preempted
* for long periods of time and that do not explicitly yield using
- * @p chThdYield(). Because of this you should consider to set
+ * @p chThdYield(). Because of this you should consider setting
* @p CH_TIME_QUANTUM to zero in your configuration file, this makes the
* kernel much faster and smaller and <b>does not</b> forbid the use of
* multiple threads at the same priority level.
|