diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-09-04 08:19:38 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-09-04 08:19:38 +0000 |
commit | 66d1c88211653eff42b6c76c8c207d43179630e8 (patch) | |
tree | 6e3f11fd45495d860953ef7dce9cd50876d54f08 /os/rt/osal | |
parent | 1292b0230ccdef3a445647185e12ac159d7a9ed8 (diff) | |
download | ChibiOS-66d1c88211653eff42b6c76c8c207d43179630e8.tar.gz ChibiOS-66d1c88211653eff42b6c76c8c207d43179630e8.tar.bz2 ChibiOS-66d1c88211653eff42b6c76c8c207d43179630e8.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6258 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/rt/osal')
-rw-r--r-- | os/rt/osal/osal.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/os/rt/osal/osal.h b/os/rt/osal/osal.h index 7ae97f92b..f1d37699f 100644 --- a/os/rt/osal/osal.h +++ b/os/rt/osal/osal.h @@ -437,7 +437,7 @@ static inline void osalSysRestoreStatusX(syssts_t sts) { *
* @xclass
*/
-#if CH_PORT_SUPPORTS_RT || defined(__DOXYGEN__)
+#if PORT_SUPPORTS_RT || defined(__DOXYGEN__)
static inline void osalSysPolledDelayX(rtcnt_t cycles) {
chSysPolledDelayX(cycles);
@@ -648,7 +648,8 @@ static inline void osalQueueObjectInit(threads_queue_t *tqp) { *
* @sclass
*/
-static inline msg_t osalQueueGoSleepTimeoutS(threads_queue_t *tqp, systime_t time) {
+static inline msg_t osalQueueGoSleepTimeoutS(threads_queue_t *tqp,
+ systime_t time) {
return chQueueGoSleepTimeoutS(tqp, time);
}
|