summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/semmp.c
diff options
context:
space:
mode:
authorAlex Ivanov <alexivanov97@gmail.com>2012-12-02 10:03:09 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2012-12-02 10:03:09 -0600
commit52adc808422cf415027c07c54910086227bcb973 (patch)
tree74d6da54a3d4ca2cc9f41dd93bf482f9c44a77ef /cpukit/rtems/src/semmp.c
parentscore misc: Score misc: Clean up Doxygen #11 (GCI 2012) (diff)
downloadrtems-52adc808422cf415027c07c54910086227bcb973.tar.bz2
score misc: Clean up Doxygen #12 (GCI 2012)
This patch is a task from GCI 2012 which improves the Doxygen comments in the RTEMS source. http://www.google-melange.com/gci/task/view/google/gci2012/8025203
Diffstat (limited to 'cpukit/rtems/src/semmp.c')
-rw-r--r--cpukit/rtems/src/semmp.c67
1 files changed, 7 insertions, 60 deletions
diff --git a/cpukit/rtems/src/semmp.c b/cpukit/rtems/src/semmp.c
index 2e85b20b90..1712c66a4f 100644
--- a/cpukit/rtems/src/semmp.c
+++ b/cpukit/rtems/src/semmp.c
@@ -1,7 +1,11 @@
-/*
- * Multiprocessing Support for the Semaphore Manager
- *
+/**
+ * @file
*
+ * @brief Semaphore MP Support
+ * @ingroup ClassicSEM
+ */
+
+/*
* COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
@@ -30,11 +34,6 @@ RTEMS_STATIC_ASSERT(
Semaphore_MP_Packet
);
-/*
- * _Semaphore_MP_Send_process_packet
- *
- */
-
void _Semaphore_MP_Send_process_packet (
Semaphore_MP_Remote_operations operation,
Objects_Id semaphore_id,
@@ -76,11 +75,6 @@ void _Semaphore_MP_Send_process_packet (
}
}
-/*
- * _Semaphore_MP_Send_request_packet
- *
- */
-
rtems_status_code _Semaphore_MP_Send_request_packet (
Semaphore_MP_Remote_operations operation,
Objects_Id semaphore_id,
@@ -128,11 +122,6 @@ rtems_status_code _Semaphore_MP_Send_request_packet (
return RTEMS_SUCCESSFUL;
}
-/*
- * _Semaphore_MP_Send_response_packet
- *
- */
-
void _Semaphore_MP_Send_response_packet (
Semaphore_MP_Remote_operations operation,
Objects_Id semaphore_id,
@@ -171,12 +160,6 @@ void _Semaphore_MP_Send_response_packet (
}
}
-/*
- *
- * _Semaphore_MP_Process_packet
- *
- */
-
void _Semaphore_MP_Process_packet (
rtems_packet_prefix *the_packet_prefix
)
@@ -257,11 +240,6 @@ void _Semaphore_MP_Process_packet (
}
}
-/*
- * _Semaphore_MP_Send_object_was_deleted
- *
- */
-
void _Semaphore_MP_Send_object_was_deleted (
Thread_Control *the_proxy
)
@@ -276,11 +254,6 @@ void _Semaphore_MP_Send_object_was_deleted (
}
-/*
- * _Semaphore_MP_Send_extract_proxy
- *
- */
-
void _Semaphore_MP_Send_extract_proxy (
void *argument
)
@@ -296,26 +269,11 @@ void _Semaphore_MP_Send_extract_proxy (
}
-/*
- * _Semaphore_MP_Get_packet
- *
- */
-
Semaphore_MP_Packet *_Semaphore_MP_Get_packet ( void )
{
return ( (Semaphore_MP_Packet *) _MPCI_Get_packet() );
}
-/*
- * _Semaphore_Core_mutex_mp_support
- *
- * Input parameters:
- * the_thread - the remote thread the semaphore was surrendered to
- * id - id of the surrendered semaphore
- *
- * Output parameters: NONE
- */
-
#if defined(RTEMS_MULTIPROCESSING)
void _Semaphore_Core_mutex_mp_support (
Thread_Control *the_thread,
@@ -332,17 +290,6 @@ void _Semaphore_Core_mutex_mp_support (
}
#endif
-
-/*
- * _Semaphore_Core_semaphore_mp_support
- *
- * Input parameters:
- * the_thread - the remote thread the semaphore was surrendered to
- * id - id of the surrendered semaphore
- *
- * Output parameters: NONE
- */
-
#if defined(RTEMS_MULTIPROCESSING)
void _Semaphore_Core_semaphore_mp_support (
Thread_Control *the_thread,