summaryrefslogtreecommitdiffstats
path: root/cpukit/score/inline/rtems/score/objectmp.inl
diff options
context:
space:
mode:
authorAlex Ivanov <alexivanov97@gmail.com>2013-01-09 07:56:28 -0600
committerJennifer Averett <jennifer.averett@oarcorp.com>2013-01-09 07:56:28 -0600
commit1f0d013dd21d8b65584affaa6e9992fe637b676e (patch)
tree89b770604489f59746b692ff693289f0a8759ce0 /cpukit/score/inline/rtems/score/objectmp.inl
parentscore: Doxygen Clean Up Task #16 (diff)
downloadrtems-1f0d013dd21d8b65584affaa6e9992fe637b676e.tar.bz2
score: Doxygen Clean Up Task #17
Diffstat (limited to '')
-rw-r--r--cpukit/score/inline/rtems/score/objectmp.inl23
1 files changed, 13 insertions, 10 deletions
diff --git a/cpukit/score/inline/rtems/score/objectmp.inl b/cpukit/score/inline/rtems/score/objectmp.inl
index 502c946014..48e59d0a15 100644
--- a/cpukit/score/inline/rtems/score/objectmp.inl
+++ b/cpukit/score/inline/rtems/score/objectmp.inl
@@ -1,8 +1,10 @@
-/**
- * @file rtems/score/objectmp.inl
+/**
+ * @file
+ *
+ * @brief Inlined Routines Associated with Global Objects
*
- * This include file contains the bodies of all inlined routines
- * which deal with global objects.
+ * This include file contains the bodies of all inlined routines
+ * which deal with global objects.
*/
/*
@@ -22,12 +24,13 @@
#define _RTEMS_SCORE_OBJECTMP_INL
/**
- * @addtogroup ScoreObjectMP
- * @{
+ * @addtogroup ScoreObjectMP
+ *
+ * @{
*/
/**
- * This function allocates a Global Object control block.
+ * This function allocates a Global Object control block.
*/
RTEMS_INLINE_ROUTINE Objects_MP_Control *_Objects_MP_Allocate_global_object (
@@ -39,7 +42,7 @@ RTEMS_INLINE_ROUTINE Objects_MP_Control *_Objects_MP_Allocate_global_object (
}
/**
- * This routine deallocates a Global Object control block.
+ * This routine deallocates a Global Object control block.
*/
RTEMS_INLINE_ROUTINE void _Objects_MP_Free_global_object (
@@ -53,7 +56,7 @@ RTEMS_INLINE_ROUTINE void _Objects_MP_Free_global_object (
}
/**
- * This function returns whether the global object is NULL or not.
+ * This function returns whether the global object is NULL or not.
*/
RTEMS_INLINE_ROUTINE bool _Objects_MP_Is_null_global_object (
@@ -63,7 +66,7 @@ RTEMS_INLINE_ROUTINE bool _Objects_MP_Is_null_global_object (
return( the_object == NULL );
}
-/**@}*/
+/** @} */
#endif
/* end of include file */