summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/objectmp.c
diff options
context:
space:
mode:
authorAlex Ivanov <alexivanov97@gmail.com>2012-11-29 17:14:28 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2012-11-29 17:14:28 -0600
commitf2f63d15488312ec053dec8842a2a25a8f957305 (patch)
tree87e76f60a6f7ceda5c4a7f1562529c0a35429e23 /cpukit/score/src/objectmp.c
parentscore misc: Score misc: Clean up Doxygen #6 (GCI 2012) (diff)
downloadrtems-f2f63d15488312ec053dec8842a2a25a8f957305.tar.bz2
score misc: Score misc: Clean up Doxygen #7 (GCI 2012)
This patch is a task from GCI 2012 which improves the Doxygen comments in the RTEMS source. https://google-melange.appspot.com/gci/task/view/google/gci2012/7986214
Diffstat (limited to 'cpukit/score/src/objectmp.c')
-rw-r--r--cpukit/score/src/objectmp.c39
1 files changed, 7 insertions, 32 deletions
diff --git a/cpukit/score/src/objectmp.c b/cpukit/score/src/objectmp.c
index 582194c3ac..44319b9363 100644
--- a/cpukit/score/src/objectmp.c
+++ b/cpukit/score/src/objectmp.c
@@ -1,7 +1,11 @@
-/*
- * Multiprocessing Support for the Object Handler
- *
+/**
+ * @file
*
+ * @brief Objects MP Support
+ * @ingroup ScoreObjectMP
+ */
+
+/*
* COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
*
@@ -21,10 +25,6 @@
#include <rtems/score/wkspace.h>
#include <rtems/score/thread.h>
-/*
- * _Objects_MP_Handler_early_initialization
- *
- */
void _Objects_MP_Handler_early_initialization(void)
{
uint32_t node;
@@ -74,11 +74,6 @@ void _Objects_MP_Handler_initialization(void)
}
-/*
- * _Objects_MP_Open
- *
- */
-
void _Objects_MP_Open (
Objects_Information *information,
Objects_MP_Control *the_global_object,
@@ -96,11 +91,6 @@ void _Objects_MP_Open (
}
-/*
- * _Objects_MP_Allocate_and_open
- *
- */
-
bool _Objects_MP_Allocate_and_open (
Objects_Information *information,
uint32_t the_name, /* XXX -- wrong for variable */
@@ -129,11 +119,6 @@ bool _Objects_MP_Allocate_and_open (
return true;
}
-/*
- * _Objects_MP_Close
- *
- */
-
void _Objects_MP_Close (
Objects_Information *information,
Objects_Id the_id
@@ -167,11 +152,6 @@ void _Objects_MP_Close (
);
}
-/*
- * _Objects_MP_Global_name_search
- *
- */
-
Objects_Name_or_id_lookup_errors _Objects_MP_Global_name_search (
Objects_Information *information,
Objects_Name the_name,
@@ -235,11 +215,6 @@ Objects_Name_or_id_lookup_errors _Objects_MP_Global_name_search (
return OBJECTS_INVALID_NAME;
}
-/*
- * _Objects_MP_Is_remote
- *
- */
-
void _Objects_MP_Is_remote (
Objects_Information *information,
Objects_Id the_id,