From 19e95ff894d1861cd7406a45dfd36721601d6385 Mon Sep 17 00:00:00 2001 From: patacongo Date: Tue, 17 Aug 2010 01:37:39 +0000 Subject: Add on-demand paging support to ARM9 prefetch abort handler git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2860 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/sched/os_start.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'nuttx/sched') diff --git a/nuttx/sched/os_start.c b/nuttx/sched/os_start.c index 9e299a946..6ca865fbc 100644 --- a/nuttx/sched/os_start.c +++ b/nuttx/sched/os_start.c @@ -189,15 +189,18 @@ const tasklist_t g_tasklisttable[NUM_TASK_STATES] = { &g_readytorun, true }, /* TSTATE_TASK_READYTORUN */ { &g_readytorun, true }, /* TSTATE_TASK_RUNNING */ { &g_inactivetasks, false }, /* TSTATE_TASK_INACTIVE */ - { &g_waitingforsemaphore, true }, /* TSTATE_WAIT_SEM */ + { &g_waitingforsemaphore, true } /* TSTATE_WAIT_SEM */ #ifndef CONFIG_DISABLE_SIGNALS - { &g_waitingforsignal, false }, /* TSTATE_WAIT_SIG */ + , + { &g_waitingforsignal, false } /* TSTATE_WAIT_SIG */ #endif #ifndef CONFIG_DISABLE_MQUEUE + , { &g_waitingformqnotempty, true }, /* TSTATE_WAIT_MQNOTEMPTY */ { &g_waitingformqnotfull, true } /* TSTATE_WAIT_MQNOTFULL */ #endif #ifdef CONFIG_PAGING + , { &g_waitingforfill, true } /* TSTATE_WAIT_PAGEFILL */ #endif }; -- cgit v1.2.3