diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-05-18 17:54:55 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-05-18 17:54:55 +0000 |
commit | 807c5f1882224c2afd471a44889b83c2adf80589 (patch) | |
tree | b2966dd99a77d5b635f6f3b48ead7ec9bcdd41f9 /os/kernel/include/chthreads.h | |
parent | b4aa14e88c9e28a16a5f9c0c220fac6cc36750ad (diff) | |
download | ChibiOS-807c5f1882224c2afd471a44889b83c2adf80589.tar.gz ChibiOS-807c5f1882224c2afd471a44889b83c2adf80589.tar.bz2 ChibiOS-807c5f1882224c2afd471a44889b83c2adf80589.zip |
Fixed bug 3303908.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2972 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel/include/chthreads.h')
-rw-r--r-- | os/kernel/include/chthreads.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/os/kernel/include/chthreads.h b/os/kernel/include/chthreads.h index df6fc329f..215bb9920 100644 --- a/os/kernel/include/chthreads.h +++ b/os/kernel/include/chthreads.h @@ -183,8 +183,10 @@ struct Thread { #define THD_STATE_SNDMSG 11
/** @brief Thread state: Waiting in @p chMsgWait().*/
#define THD_STATE_WTMSG 12
+/** @brief Thread state: Waiting on an I/O queue.*/
+#define THD_STATE_WTQUEUE 13
/** @brief Thread state: After termination.*/
-#define THD_STATE_FINAL 13
+#define THD_STATE_FINAL 14
/*
* Various flags into the thread p_flags field.
|