summaryrefslogtreecommitdiff
path: root/nuttx/sched/sched_setparam.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-03-20 19:04:01 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-03-20 19:04:01 +0000
commit4edac7e4a38497af50c177c9604806670b76345f (patch)
tree3fc0b2ffac9829ea40db7858e6d2356579e85b4e /nuttx/sched/sched_setparam.c
parentc6fe19aace6705b944dc95a43e27d3269ff813dc (diff)
downloadpx4-nuttx-4edac7e4a38497af50c177c9604806670b76345f.tar.gz
px4-nuttx-4edac7e4a38497af50c177c9604806670b76345f.tar.bz2
px4-nuttx-4edac7e4a38497af50c177c9604806670b76345f.zip
Changes for the SDCC compiler
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@109 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/sched/sched_setparam.c')
-rw-r--r--nuttx/sched/sched_setparam.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/sched/sched_setparam.c b/nuttx/sched/sched_setparam.c
index cb363950c..30978b02e 100644
--- a/nuttx/sched/sched_setparam.c
+++ b/nuttx/sched/sched_setparam.c
@@ -240,7 +240,7 @@ int sched_setparam(pid_t pid, const struct sched_param *param)
{
/* Remove the TCB from the prioritized task list */
- dq_rem((FAR dq_entry_t*)tcb, (dq_queue_t*)g_tasklisttable[task_state].list);
+ dq_rem((FAR dq_entry_t*)tcb, (FAR dq_queue_t*)g_tasklisttable[task_state].list);
/* Change the task priority */
@@ -250,7 +250,7 @@ int sched_setparam(pid_t pid, const struct sched_param *param)
* position
*/
- sched_addprioritized(tcb, (dq_queue_t*)g_tasklisttable[task_state].list);
+ sched_addprioritized(tcb, (FAR dq_queue_t*)g_tasklisttable[task_state].list);
}
/* CASE 3b. The task resides in a non-prioritized list. */