From a66c595b1417195f185836fa444312fe73c99278 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Mon, 24 Nov 2014 08:49:36 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7530 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/rt/templates/chcore.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'os') diff --git a/os/rt/templates/chcore.h b/os/rt/templates/chcore.h index bdb5dd0b6..71a6eaf2f 100644 --- a/os/rt/templates/chcore.h +++ b/os/rt/templates/chcore.h @@ -233,6 +233,10 @@ struct context { /* External declarations. */ /*===========================================================================*/ +/* The following code is not processed when the file is included from an + asm module.*/ +#if !defined(_FROM_ASM_) + #ifdef __cplusplus extern "C" { #endif @@ -242,10 +246,16 @@ extern "C" { } #endif +#endif /* !defined(_FROM_ASM_) */ + /*===========================================================================*/ /* Module inline functions. */ /*===========================================================================*/ +/* The following code is not processed when the file is included from an + asm module.*/ +#if !defined(_FROM_ASM_) + /** * @brief Returns a word encoding the current interrupts status. * @@ -374,6 +384,8 @@ static inline rtcnt_t port_rt_get_counter_value(void) { /* Module late inclusions. */ /*===========================================================================*/ +/* The following code is not processed when the file is included from an + asm module.*/ #if !defined(_FROM_ASM_) #if CH_CFG_ST_TIMEDELTA > 0 -- cgit v1.2.3