summaryrefslogtreecommitdiff
path: root/nuttx/sched/sched_addreadytorun.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/sched/sched_addreadytorun.c')
-rw-r--r--nuttx/sched/sched_addreadytorun.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/sched/sched_addreadytorun.c b/nuttx/sched/sched_addreadytorun.c
index 4344caf31..d3b32fef1 100644
--- a/nuttx/sched/sched_addreadytorun.c
+++ b/nuttx/sched/sched_addreadytorun.c
@@ -111,14 +111,14 @@ boolean sched_addreadytorun(FAR _TCB *btcb)
* task to the g_pendingtasks task list for now.
*/
- sched_addprioritized(btcb, &g_pendingtasks);
+ sched_addprioritized(btcb, (dq_queue_t*)&g_pendingtasks);
btcb->task_state = TSTATE_TASK_PENDING;
ret = FALSE;
}
/* Otherwise, add the new task to the g_readytorun task list */
- else if (sched_addprioritized(btcb, &g_readytorun))
+ else if (sched_addprioritized(btcb, (dq_queue_t*)&g_readytorun))
{
/* Information the instrumentation logic that we are switching tasks */