diff options
Diffstat (limited to 'src/lib/ch.hpp')
-rw-r--r-- | src/lib/ch.hpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/lib/ch.hpp b/src/lib/ch.hpp index e4ce6000f..f041365d7 100644 --- a/src/lib/ch.hpp +++ b/src/lib/ch.hpp @@ -115,26 +115,21 @@ namespace chibios_rt { msg_t Wait(void);
#endif /* CH_USE_WAITEXIT */
-#ifdef CH_USE_RESUME
/**
* Resumes thread.
*/
void Resume(void);
-#endif /* CH_USE_RESUME */
/**
* Change thread priority.
*/
static void SetPriority(tprio_t newprio);
-#ifdef CH_USE_TERMINATE
/**
* Requests thread termination.
*/
void Terminate(void);
-#endif /* CH_USE_TERMINATE */
-#ifdef CH_USE_SLEEP
/**
* Suspends the thread execution for the specified number of system ticks.
*/
@@ -146,7 +141,6 @@ namespace chibios_rt { */
static void SleepUntil(systime_t time);
#endif /* CH_USE_SYSTEMTIME */
-#endif /* CH_USE_SLEEP */
#ifdef CH_USE_MESSAGES
/**
|