diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-02-06 12:31:09 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-02-06 12:31:09 +0000 |
commit | 8e428dbd1a48615c36c8c086dd51079050c9fb1c (patch) | |
tree | d1c7168826614acb1925e997915a010f3c4d999b /os/kernel/include/inline.h | |
parent | f17db1931e95f5ebb42f557b6eead2bf1320db5a (diff) | |
download | ChibiOS-8e428dbd1a48615c36c8c086dd51079050c9fb1c.tar.gz ChibiOS-8e428dbd1a48615c36c8c086dd51079050c9fb1c.tar.bz2 ChibiOS-8e428dbd1a48615c36c8c086dd51079050c9fb1c.zip |
Kernel headers cleanup.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1568 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel/include/inline.h')
-rw-r--r-- | os/kernel/include/inline.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/os/kernel/include/inline.h b/os/kernel/include/inline.h index 6f6734893..43f12f2e7 100644 --- a/os/kernel/include/inline.h +++ b/os/kernel/include/inline.h @@ -21,15 +21,12 @@ #define _INLINE_H_
/**
- * @file inline.h
- * @brief kernel inlined functions.
+ * @file inline.h
+ * @brief Kernel inlined functions.
+ * @details In this file there are a set of inlined functions if the
+ * @p CH_OPTIMIZE_SPEED is enabled.
*/
-/*
- * Inlined functions if CH_OPTIMIZE_SPEED is enabled.
- * Note: static inlined functions do not duplicate the code in every module
- * this is true for GCC, not sure about other compilers.
- */
#if CH_OPTIMIZE_SPEED
static INLINE void prio_insert(Thread *tp, ThreadsQueue *tqp) {
|