git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@565 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2008-12-30 17:17:52 +00:00
parent c93c50fbc4
commit e04e6ada04
3 changed files with 27 additions and 1 deletions

View File

@ -435,6 +435,25 @@
* Non portable code.
* @ingroup Kernel
* @file chcore.c Non portable code.
* @file chcore.h Non portable macros and structures.
*/
/** @} */
/**
* @defgroup Types Types
* @{
* System types and macros.
* @ingroup Kernel
* @file chtypes.h System types and code modifiers.
*/
/** @} */
/**
* @defgroup Inline Inline
* @{
* System inline-able code.
* @ingroup Kernel
* @file inline.h Inline versions of some critical system routines.
*/
/** @} */

View File

@ -17,6 +17,11 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @addtogroup Inline
* @{
*/
#ifndef _INLINE_H_
#define _INLINE_H_
@ -78,3 +83,5 @@ static INLINE Thread *list_remove(ThreadsList *tlp) {
#endif /* CH_OPTIMIZE_SPEED */
#endif /* _INLINE_H_ */
/** @} */

View File

@ -18,7 +18,7 @@
*/
/**
* @addtogroup Core
* @addtogroup Types
* @{
*/