diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-04-11 08:25:03 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-04-11 08:25:03 +0000 |
commit | df7afc9b41c598a9ff924dd971989e72708094ad (patch) | |
tree | fa80ba4b80ec740e396415d3137780e475c8b837 | |
parent | 1afa48e7aaa289664fb0fd000e5766896b9a9112 (diff) | |
download | ChibiOS-df7afc9b41c598a9ff924dd971989e72708094ad.tar.gz ChibiOS-df7afc9b41c598a9ff924dd971989e72708094ad.tar.bz2 ChibiOS-df7afc9b41c598a9ff924dd971989e72708094ad.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5586 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/kernel/include/chthreads.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/os/kernel/include/chthreads.h b/os/kernel/include/chthreads.h index ca8a843da..77f72caca 100644 --- a/os/kernel/include/chthreads.h +++ b/os/kernel/include/chthreads.h @@ -310,8 +310,8 @@ typedef msg_t (*tfunc_t)(void *); /**
* @brief Delays the invoking thread for the specified number of seconds.
* @note The specified time is rounded up to a value allowed by the real
- * system clock.
- * @note The maximum specified value is implementation dependent.
+ * system tick clock.
+ * @note The maximum specifiable value is implementation dependent.
*
* @param[in] sec time in seconds, must be different from zero
*
@@ -323,8 +323,8 @@ typedef msg_t (*tfunc_t)(void *); * @brief Delays the invoking thread for the specified number of
* milliseconds.
* @note The specified time is rounded up to a value allowed by the real
- * system clock.
- * @note The maximum specified value is implementation dependent.
+ * system tick clock.
+ * @note The maximum specifiable value is implementation dependent.
*
* @param[in] msec time in milliseconds, must be different from zero
*
@@ -336,8 +336,8 @@ typedef msg_t (*tfunc_t)(void *); * @brief Delays the invoking thread for the specified number of
* microseconds.
* @note The specified time is rounded up to a value allowed by the real
- * system clock.
- * @note The maximum specified value is implementation dependent.
+ * system tick clock.
+ * @note The maximum specifiable value is implementation dependent.
*
* @param[in] usec time in microseconds, must be different from zero
*
|