aboutsummaryrefslogtreecommitdiffstats
path: root/os/rt/include
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-08-30 17:13:45 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-08-30 17:13:45 +0000
commitcb1f7893a41f24a46d0bc99198a3281dcea2148d (patch)
tree13aa2d5c65a0581a72f89e81ba3a3b7aa7b49a12 /os/rt/include
parente40ae9763814661fa99e2b546e4f2562fb48650b (diff)
downloadChibiOS-cb1f7893a41f24a46d0bc99198a3281dcea2148d.tar.gz
ChibiOS-cb1f7893a41f24a46d0bc99198a3281dcea2148d.tar.bz2
ChibiOS-cb1f7893a41f24a46d0bc99198a3281dcea2148d.zip
Fixed bug #529.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7209 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/rt/include')
-rw-r--r--os/rt/include/chthreads.h4
1 files 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"
/** @} */