summaryrefslogtreecommitdiff
path: root/nuttx/include/sched.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-03-24 15:53:52 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-03-24 15:53:52 +0000
commitfbc0543837f468e967a8e762db9b6c309aba0630 (patch)
tree8400708a902d0603d9af940c8df83bcdc3eb52c2 /nuttx/include/sched.h
parent3b2e159e36ac389022430ff7b63f049b1f1145e7 (diff)
downloadpx4-nuttx-fbc0543837f468e967a8e762db9b6c309aba0630.tar.gz
px4-nuttx-fbc0543837f468e967a8e762db9b6c309aba0630.tar.bz2
px4-nuttx-fbc0543837f468e967a8e762db9b6c309aba0630.zip
Add SCHED_SPORADIC (even though we don't use it)
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@138 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/include/sched.h')
-rw-r--r--nuttx/include/sched.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/nuttx/include/sched.h b/nuttx/include/sched.h
index 0cf488fd7..b2b9eef60 100644
--- a/nuttx/include/sched.h
+++ b/nuttx/include/sched.h
@@ -51,9 +51,10 @@
/* POSIX-like scheduling policies */
-#define SCHED_FIFO 1 /* FIFO per priority scheduling policy */
-#define SCHED_RR 2 /* Round robin scheduling policy */
-#define SCHED_OTHER 4 /* Not used */
+#define SCHED_FIFO 1 /* FIFO per priority scheduling policy */
+#define SCHED_RR 2 /* Round robin scheduling policy */
+#define SCHED_SPORADIC 3 /* Not supported */
+#define SCHED_OTHER 4 /* Not supported */
/* Pthread definitions **********************************************************/