diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-01-04 12:03:02 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-01-04 12:03:02 +0000 |
commit | c258f4718ce3d3a1f66f95ed99f0b2eead2d796c (patch) | |
tree | e16792ad1704f56ce60a6f7511818e22fb1fa8fc | |
parent | 4b2705efbffc4849583f37984762388be5a01b21 (diff) | |
download | ChibiOS-c258f4718ce3d3a1f66f95ed99f0b2eead2d796c.tar.gz ChibiOS-c258f4718ce3d3a1f66f95ed99f0b2eead2d796c.tar.bz2 ChibiOS-c258f4718ce3d3a1f66f95ed99f0b2eead2d796c.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6602 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/rt/include/chthreads.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/rt/include/chthreads.h b/os/rt/include/chthreads.h index e1a8b496d..4f4fed004 100644 --- a/os/rt/include/chthreads.h +++ b/os/rt/include/chthreads.h @@ -41,7 +41,7 @@ #define CH_STATE_CURRENT 1 /**< @brief Currently running. */
#define CH_STATE_WTSTART 2 /**< @brief Created but not started. */
#define CH_STATE_SUSPENDED 3 /**< @brief Created in suspended state. */
-#define CH_STATE_QUEUED 4 /**< @brief Waiting on an I/O queue. */
+#define CH_STATE_QUEUED 4 /**< @brief Waiting on an I/O queue. */
#define CH_STATE_WTSEM 5 /**< @brief Waiting on a semaphore. */
#define CH_STATE_WTMTX 6 /**< @brief Waiting on a mutex. */
#define CH_STATE_WTCOND 7 /**< @brief Waiting on a condition
|