diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-07-29 13:28:35 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-07-29 13:28:35 +0000 |
commit | 61f841306aaa11b1471db1deb00470ea48f646fd (patch) | |
tree | 0f69b278240b26d0dd4e20da5fe6de2a2b840992 /os/kernel/src/chvt.c | |
parent | 0cb6bc9b9d260beb05fcc9e2ec4d72f0ba621b71 (diff) | |
download | ChibiOS-61f841306aaa11b1471db1deb00470ea48f646fd.tar.gz ChibiOS-61f841306aaa11b1471db1deb00470ea48f646fd.tar.bz2 ChibiOS-61f841306aaa11b1471db1deb00470ea48f646fd.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6037 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel/src/chvt.c')
-rw-r--r-- | os/kernel/src/chvt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/kernel/src/chvt.c b/os/kernel/src/chvt.c index e5d6d1aa3..3e6028f9c 100644 --- a/os/kernel/src/chvt.c +++ b/os/kernel/src/chvt.c @@ -88,9 +88,9 @@ void _vt_init(void) { * @retval true current time within the specified time window.
* @retval false current time not within the specified time window.
*
- * @special
+ * @xclass
*/
-bool chVTIsTimeWithin(systime_t time, systime_t start, systime_t end) {
+bool chVTIsTimeWithinX(systime_t time, systime_t start, systime_t end) {
return end > start ? (time >= start) && (time < end) :
(time >= start) || (time < end);
|