diff options
-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
|