diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/threads.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/threads.h b/src/include/threads.h index 50468e063..f451278cf 100644 --- a/src/include/threads.h +++ b/src/include/threads.h @@ -135,6 +135,8 @@ struct Thread { #define P_TERMINATE 1
/** Thread option: Create suspended thread.*/
#define P_SUSPENDED 2
+/** Thread option: Serve messages by priority instead of FIFO order.*/
+#define P_MSGBYPRIO 4
/** Pseudo priority used by the ready list header, do not use.*/
#define NOPRIO 0
|