From cb1f7893a41f24a46d0bc99198a3281dcea2148d Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sat, 30 Aug 2014 17:13:45 +0000 Subject: [PATCH] Fixed bug #529. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7209 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/rt/include/chthreads.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/os/rt/include/chthreads.h b/os/rt/include/chthreads.h index e7eeeee1d..5c270f9b2 100644 --- a/os/rt/include/chthreads.h +++ b/os/rt/include/chthreads.h @@ -40,7 +40,7 @@ #define CH_STATE_READY 0 /**< @brief Waiting on the ready list. */ #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_SUSPENDED 3 /**< @brief Suspended state. */ #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. */ @@ -63,7 +63,7 @@ * indexed using the numeric thread state values. */ #define CH_STATE_NAMES \ - "READY", "WTSTART", "CURRENT", "SUSPENDED", "QUEUED", "WTSEM", "WTMTX", \ + "READY", "CURRENT", "WTSTART", "SUSPENDED", "QUEUED", "WTSEM", "WTMTX", \ "WTCOND", "SLEEPING", "WTEXIT", "WTOREVT", "WTANDEVT", "SNDMSGQ", \ "SNDMSG", "WTMSG", "FINAL" /** @} */