diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-02-27 09:43:45 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-02-27 09:43:45 +0000 |
commit | e99b06592a7a65569e4b5697fe11a5004dfc7671 (patch) | |
tree | 6156fd8a6c3d87d55ef7c61dafe291eed180d2f0 | |
parent | bdfdc5f47a507de9c44f28ca794e3b021135ab34 (diff) | |
download | ChibiOS-e99b06592a7a65569e4b5697fe11a5004dfc7671.tar.gz ChibiOS-e99b06592a7a65569e4b5697fe11a5004dfc7671.tar.bz2 ChibiOS-e99b06592a7a65569e4b5697fe11a5004dfc7671.zip |
Forgot this one...
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1684 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/kernel/include/chinline.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/os/kernel/include/chinline.h b/os/kernel/include/chinline.h index c70040d55..a0beb7455 100644 --- a/os/kernel/include/chinline.h +++ b/os/kernel/include/chinline.h @@ -17,16 +17,16 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef _INLINE_H_
-#define _INLINE_H_
-
/**
- * @file inline.h
+ * @file chinline.h
* @brief Kernel inlined functions.
* @details In this file there are a set of inlined functions if the
* @p CH_OPTIMIZE_SPEED is enabled.
*/
+#ifndef _CHINLINE_H_
+#define _CHINLINE_H_
+
/* If the performance code path has been chosen then all the following
functions are inlined into the various kernel modules.*/
#if CH_OPTIMIZE_SPEED
@@ -81,4 +81,4 @@ static INLINE Thread *list_remove(ThreadsList *tlp) { }
#endif /* CH_OPTIMIZE_SPEED */
-#endif /* _INLINE_H_ */
+#endif /* _CHINLINE_H_ */
|