diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-11-04 13:35:10 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-11-04 13:35:10 +0000 |
commit | 202661e81e18dad821a1855caf39add96440f6cf (patch) | |
tree | 2dab0a7863bdc1d504b730db2c936a6d57872763 /os/nil/src | |
parent | 3d2ebf13f5b01f802fae0afec8651cde4c121be8 (diff) | |
download | ChibiOS-202661e81e18dad821a1855caf39add96440f6cf.tar.gz ChibiOS-202661e81e18dad821a1855caf39add96440f6cf.tar.bz2 ChibiOS-202661e81e18dad821a1855caf39add96440f6cf.zip |
Improved time range functions. Reduced size for NIL when tickless mode is used.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6416 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/nil/src')
-rw-r--r-- | os/nil/src/nil.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/os/nil/src/nil.c b/os/nil/src/nil.c index 5d9a660f7..9141129cb 100644 --- a/os/nil/src/nil.c +++ b/os/nil/src/nil.c @@ -467,26 +467,6 @@ void chThdSleepUntil(systime_t time) { }
/**
- * @brief Checks if the specified time is within the specified time window.
- * @note When start==end then the function returns always true because the
- * whole time range is specified.
- * @note This function can be called from any context.
- *
- * @param[in] time the time to be verified
- * @param[in] start the start of the time window (inclusive)
- * @param[in] end the end of the time window (non inclusive)
- * @retval true current time within the specified time window.
- * @retval false current time not within the specified time window.
- *
- * @xclass
- */
-bool chVTIsTimeWithinX(systime_t time, systime_t start, systime_t end) {
-
- return end > start ? (time >= start) && (time < end) :
- (time >= start) || (time < end);
-}
-
-/**
* @brief Performs a wait operation on a semaphore with timeout specification.
*
* @param[in] sp pointer to a @p semaphore_t structure
|