summaryrefslogtreecommitdiffstats
path: root/nuttx/sched/sched_removereadytorun.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-07-14 19:30:31 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-07-14 19:30:31 +0000
commit907c8fcd4a656a089bd7934756beca9a4256f146 (patch)
treeb34f7d2914cba8aeb9311c5bae3771af40054640 /nuttx/sched/sched_removereadytorun.c
parent1eb675344c593d23f1c2ac1b5e56dcabd68e08f2 (diff)
Fix STM32 F2/F4 SDIO clocking; Clean-up files in sched/ directory
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4940 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/sched/sched_removereadytorun.c')
-rw-r--r--nuttx/sched/sched_removereadytorun.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/nuttx/sched/sched_removereadytorun.c b/nuttx/sched/sched_removereadytorun.c
index 82c24402cd..4982808e2b 100644
--- a/nuttx/sched/sched_removereadytorun.c
+++ b/nuttx/sched/sched_removereadytorun.c
@@ -83,9 +83,8 @@
* g_readytorun list) has changed.
*
* Assumptions:
- * - The caller has established a critical section before
- * calling this function (calling sched_lock() first is NOT
- * a good idea -- use irqsave()).
+ * - The caller has established a critical section before calling this
+ * function (calling sched_lock() first is NOT a good idea -- use irqsave()).
* - The caller handles the condition that occurs if the
* the head of the g_readytorun list is changed.
*
@@ -95,9 +94,8 @@ bool sched_removereadytorun(FAR _TCB *rtcb)
{
bool ret = false;
- /* Check if the TCB to be removed is at the head of the ready
- * to run list. In this case, we are removing the currently
- * active task.
+ /* Check if the TCB to be removed is at the head of the ready to run list.
+ * In this case, we are removing the currently active task.
*/
if (!rtcb->blink)