summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2015-03-10 12:39:59 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2015-03-11 16:18:29 -0500
commitbdf23b6cd46b877ae251c1b6d65202c11e70a874 (patch)
treea1f9c051a576c07c88620db632d8f9f28809d55f /cpukit/rtems
parentdoc/started: simplify and fix (diff)
downloadrtems-bdf23b6cd46b877ae251c1b6d65202c11e70a874.tar.bz2
cpukit: Remove old DESCRIPTION: in comments
These were remnants of pre-Doxygen comment style.
Diffstat (limited to 'cpukit/rtems')
-rw-r--r--cpukit/rtems/include/rtems/rtems/sem.h8
-rw-r--r--cpukit/rtems/src/barrier.c28
-rw-r--r--cpukit/rtems/src/semrelease.c16
3 files changed, 15 insertions, 37 deletions
diff --git a/cpukit/rtems/include/rtems/rtems/sem.h b/cpukit/rtems/include/rtems/rtems/sem.h
index 2442010113..6df9b5523b 100644
--- a/cpukit/rtems/include/rtems/rtems/sem.h
+++ b/cpukit/rtems/include/rtems/rtems/sem.h
@@ -17,9 +17,12 @@
* - delete a semaphore
* - acquire a semaphore
* - release a semaphore
+ * - flush a semaphore
+ * - set ceiling priority for a semaphore
*/
-/* COPYRIGHT (c) 1989-2008.
+/*
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -198,8 +201,7 @@ rtems_status_code rtems_semaphore_release(
/**
* @brief RTEMS Semaphore Flush
*
- * DESCRIPTION:
- * This package is the implementation of the flush directive
+ * This method is the implementation of the flush directive
* of the Semaphore Manager.
*
* This directive allows a thread to flush the threads
diff --git a/cpukit/rtems/src/barrier.c b/cpukit/rtems/src/barrier.c
index 86854b92da..e69332989c 100644
--- a/cpukit/rtems/src/barrier.c
+++ b/cpukit/rtems/src/barrier.c
@@ -1,19 +1,12 @@
-/*
- * Barrier Manager
- *
- * DESCRIPTION:
- *
- * This package is the implementation of the Barrier Manager.
- *
- * Directives provided are:
- *
- * + create a barrier
- * + get an ID of a barrier
- * + delete a barrier
- * + acquire a barrier
- * + release a barrier
+/**
+ * @file
*
- * COPYRIGHT (c) 1989-2008.
+ * @brief RTEMS Barrier Manager Initialization
+ * @ingroup ClassicBarrier Barriers
+ */
+
+/*
+ * COPYRIGHT (c) 1989-2015.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -33,12 +26,7 @@
/**
* @brief _Barrier_Manager_initialization
- *
- * Input parameters: NONE
- *
- * Output parameters: NONE
*/
-
void _Barrier_Manager_initialization(void)
{
_Objects_Initialize_information(
diff --git a/cpukit/rtems/src/semrelease.c b/cpukit/rtems/src/semrelease.c
index 2c4be04c78..37a05b2507 100644
--- a/cpukit/rtems/src/semrelease.c
+++ b/cpukit/rtems/src/semrelease.c
@@ -4,20 +4,8 @@
* @brief RTEMS Semaphore Release
* @ingroup ClassicSem Semaphores
*
- * DESCRIPTION:
- *
- * This package is the implementation of the Semaphore Manager.
- * This manager utilizes standard Dijkstra counting semaphores to provide
- * synchronization and mutual exclusion capabilities.
- *
- * Directives provided are:
- *
- * + create a semaphore
- * + get an ID of a semaphore
- * + delete a semaphore
- * + acquire a semaphore
- * + release a semaphore
- *
+ * This file contains the implementation of the Classic API directive
+ * rtems_semaphore_release().
*/
/*