Skip to content
Snippets Groups Projects
Commit b9d2a2b9 authored by patacongo's avatar patacongo
Browse files

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
parent 768a214d
No related branches found
No related tags found
No related merge requests found
......@@ -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 **********************************************************/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment