summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/coresem.c
diff options
context:
space:
mode:
authorAlex Ivanov <alexivanov97@gmail.com>2012-11-28 13:57:31 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2012-11-28 13:57:31 -0600
commit355ee7dbd52a1ea5fd7d8b32d31aeccd58ccb8c4 (patch)
tree9a21764eba2821fee88b7c064c2ad44477ff1cc3 /cpukit/score/src/coresem.c
parentscore misc: Clean up Doxygen #2 (GCI 2012) (diff)
downloadrtems-355ee7dbd52a1ea5fd7d8b32d31aeccd58ccb8c4.tar.bz2
score misc: Clean up Doxygen #3 (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/7982215
Diffstat (limited to 'cpukit/score/src/coresem.c')
-rw-r--r--cpukit/score/src/coresem.c29
1 files changed, 7 insertions, 22 deletions
diff --git a/cpukit/score/src/coresem.c b/cpukit/score/src/coresem.c
index f0fa9f40d4..03b9c5e6a8 100644
--- a/cpukit/score/src/coresem.c
+++ b/cpukit/score/src/coresem.c
@@ -1,12 +1,11 @@
-/*
- * CORE Semaphore Handler
- *
- * DESCRIPTION:
- *
- * This package is the implementation of the CORE Semaphore Handler.
- * This core object utilizes standard Dijkstra counting semaphores to provide
- * synchronization and mutual exclusion capabilities.
+/**
+ * @file
*
+ * @brief Core Semaphore Initialize
+ * @ingroup ScoreSemaphore
+ */
+
+/*
* COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
*
@@ -26,20 +25,6 @@
#include <rtems/score/thread.h>
#include <rtems/score/threadq.h>
-/*
- * CORE_semaphore_Initialize
- *
- * This function initialize a semaphore and sets the initial value based
- * on the given count.
- *
- * Input parameters:
- * the_semaphore - the semaphore control block to initialize
- * the_semaphore_attributes - the attributes specified at create time
- * initial_value - semaphore's initial value
- *
- * Output parameters: NONE
- */
-
void _CORE_semaphore_Initialize(
CORE_semaphore_Control *the_semaphore,
CORE_semaphore_Attributes *the_semaphore_attributes,