summaryrefslogtreecommitdiffstats
path: root/cpukit/score/inline/rtems/score/objectmp.inl
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/score/inline/rtems/score/objectmp.inl37
1 files changed, 16 insertions, 21 deletions
diff --git a/cpukit/score/inline/rtems/score/objectmp.inl b/cpukit/score/inline/rtems/score/objectmp.inl
index 462a670876..ddd48fdf1b 100644
--- a/cpukit/score/inline/rtems/score/objectmp.inl
+++ b/cpukit/score/inline/rtems/score/objectmp.inl
@@ -1,9 +1,12 @@
-/* inline/objectmp.inl
+/**
+ * @file objectmp.inl
*
* This include file contains the bodies of all inlined routines
* which deal with global objects.
- *
- * COPYRIGHT (c) 1989-1999.
+ */
+
+/*
+ * COPYRIGHT (c) 1989-2004.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -16,12 +19,12 @@
#ifndef __INLINE_MP_OBJECTS_inl
#define __INLINE_MP_OBJECTS_inl
-/*PAGE
- *
- * _Objects_MP_Allocate_global_object
- *
- * DESCRIPTION:
- *
+/**
+ * @addtogroup ScoreObjectMP
+ * @{
+ */
+
+/**
* This function allocates a Global Object control block.
*/
@@ -33,12 +36,7 @@ RTEMS_INLINE_ROUTINE Objects_MP_Control *_Objects_MP_Allocate_global_object (
_Chain_Get( &_Objects_MP_Inactive_global_objects );
}
-/*PAGE
- *
- * _Objects_MP_Free_global_object
- *
- * DESCRIPTION:
- *
+/**
* This routine deallocates a Global Object control block.
*/
@@ -52,12 +50,7 @@ RTEMS_INLINE_ROUTINE void _Objects_MP_Free_global_object (
);
}
-/*PAGE
- *
- * _Objects_MP_Is_null_global_object
- *
- * DESCRIPTION:
- *
+/**
* This function returns whether the global object is NULL or not.
*/
@@ -68,5 +61,7 @@ RTEMS_INLINE_ROUTINE boolean _Objects_MP_Is_null_global_object (
return( the_object == NULL );
}
+/**@}*/
+
#endif
/* end of include file */