summaryrefslogtreecommitdiff
path: root/nuttx/include
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-09 14:20:31 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-09 14:20:31 +0000
commita2c6c96d13de37908120dcae297530665836f8e8 (patch)
treed77644599c129cf8d3699215096e70c656916e32 /nuttx/include
parent5205351a1af35821a02ef91090375593e05415bc (diff)
downloadpx4-nuttx-a2c6c96d13de37908120dcae297530665836f8e8.tar.gz
px4-nuttx-a2c6c96d13de37908120dcae297530665836f8e8.tar.bz2
px4-nuttx-a2c6c96d13de37908120dcae297530665836f8e8.zip
Changes for ZNeo compile
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@539 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/include')
-rw-r--r--nuttx/include/nuttx/sched.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/nuttx/include/nuttx/sched.h b/nuttx/include/nuttx/sched.h
index 3f7d1ae10..7386979c8 100644
--- a/nuttx/include/nuttx/sched.h
+++ b/nuttx/include/nuttx/sched.h
@@ -90,11 +90,13 @@ enum tstate_e
TSTATE_TASK_RUNNING = 3, /* READY_TO_RUN - And running */
TSTATE_TASK_INACTIVE = 4, /* BLOCKED - Initialized but not yet activated */
- TSTATE_WAIT_SEM = 5, /* BLOCKED - Waiting for a semaphore */
+ TSTATE_WAIT_SEM = 5 /* BLOCKED - Waiting for a semaphore */
#ifndef CONFIG_DISABLE_SIGNALS
- TSTATE_WAIT_SIG = 6, /* BLOCKED - Waiting for a signal */
+ ,
+ TSTATE_WAIT_SIG = 6 /* BLOCKED - Waiting for a signal */
#endif
#ifndef CONFIG_DISABLE_MQUEUE
+ ,
TSTATE_WAIT_MQNOTEMPTY, /* BLOCKED - Waiting for a MQ to become not empty. */
TSTATE_WAIT_MQNOTFULL /* BLOCKED - Waiting for a MQ to become not full. */
#endif