summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2013-01-10 15:06:42 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2013-01-10 17:06:47 -0600
commitb697bc6a44a4a41f3025b833847adf96f6052bdd (patch)
treef5b92442b085535f82e63c0c7d3ca71005579fd0 /cpukit/score/include/rtems/score
parentcpukit: Add EOL on files missing EOL at EOF (diff)
downloadrtems-b697bc6a44a4a41f3025b833847adf96f6052bdd.tar.bz2
cpukit: Use Consistent Beginning of Doxygen Group Notation
This is the result of a sed script which converts all uses of @{ into a consistent form.
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/score/apimutex.h6
-rw-r--r--cpukit/score/include/rtems/score/heap.h3
-rw-r--r--cpukit/score/include/rtems/score/protectedheap.h2
-rw-r--r--cpukit/score/include/rtems/score/sysstate.h3
-rw-r--r--cpukit/score/include/rtems/score/userext.h3
-rw-r--r--cpukit/score/include/rtems/score/userextimpl.h9
6 files changed, 9 insertions, 17 deletions
diff --git a/cpukit/score/include/rtems/score/apimutex.h b/cpukit/score/include/rtems/score/apimutex.h
index 4d44f5e3e8..a9351003fc 100644
--- a/cpukit/score/include/rtems/score/apimutex.h
+++ b/cpukit/score/include/rtems/score/apimutex.h
@@ -28,9 +28,8 @@ extern "C" {
* @ingroup Score
*
* @brief Provides routines to ensure mutual exclusion on API level.
- *
- * @{
*/
+/**@{**/
#include <rtems/score/coremutex.h>
#include <rtems/score/isr.h>
@@ -100,9 +99,8 @@ void _API_Mutex_Unlock( API_Mutex_Control *mutex );
* When the APIs all use this for allocation and deallocation protection, then
* this possibly should be renamed and moved to a higher level in the
* hierarchy.
- *
- * @{
*/
+/**@{**/
/**
* @brief Memory allocation mutex.
diff --git a/cpukit/score/include/rtems/score/heap.h b/cpukit/score/include/rtems/score/heap.h
index 0af9798f4f..80b3fd2404 100644
--- a/cpukit/score/include/rtems/score/heap.h
+++ b/cpukit/score/include/rtems/score/heap.h
@@ -126,9 +126,8 @@ extern "C" {
* block indicates that the previous block is used, this ensures that the
* last block appears as used for the _Heap_Is_used() and _Heap_Is_free()
* functions.
- *
- * @{
*/
+/**@{**/
typedef struct Heap_Control Heap_Control;
diff --git a/cpukit/score/include/rtems/score/protectedheap.h b/cpukit/score/include/rtems/score/protectedheap.h
index 3fe614379c..29ee62dbfb 100644
--- a/cpukit/score/include/rtems/score/protectedheap.h
+++ b/cpukit/score/include/rtems/score/protectedheap.h
@@ -34,8 +34,8 @@ extern "C" {
*
* The @ref ScoreAllocatorMutex is used to protect the heap accesses.
*
- * @{
*/
+/**@{**/
/**
* @brief See _Heap_Initialize().
diff --git a/cpukit/score/include/rtems/score/sysstate.h b/cpukit/score/include/rtems/score/sysstate.h
index 9223820bf9..7d3d6aed59 100644
--- a/cpukit/score/include/rtems/score/sysstate.h
+++ b/cpukit/score/include/rtems/score/sysstate.h
@@ -30,9 +30,8 @@ extern "C" {
* @ingroup Score
*
* @brief Management of the internal system state of RTEMS.
- *
- * @{
*/
+/**@{**/
/**
* @brief System states.
diff --git a/cpukit/score/include/rtems/score/userext.h b/cpukit/score/include/rtems/score/userext.h
index 078c3deec8..bf76c35e39 100644
--- a/cpukit/score/include/rtems/score/userext.h
+++ b/cpukit/score/include/rtems/score/userext.h
@@ -36,9 +36,8 @@ typedef void User_extensions_routine RTEMS_COMPILER_DEPRECATED_ATTRIBUTE;
* @brief The User Extension Handler provides invocation of application
* dependent routines at critical points in the life of each thread and the
* system as a whole.
- *
- * @{
*/
+/**@{**/
/**
* @brief Task create extension.
diff --git a/cpukit/score/include/rtems/score/userextimpl.h b/cpukit/score/include/rtems/score/userextimpl.h
index c3b02c7f44..6ecdcc579a 100644
--- a/cpukit/score/include/rtems/score/userextimpl.h
+++ b/cpukit/score/include/rtems/score/userextimpl.h
@@ -30,9 +30,8 @@ extern "C" {
* @ingroup Score
*
* @addtogroup ScoreUserExt
- *
- * @{
*/
+/**@{**/
/**
* @brief List of active extensions.
@@ -46,9 +45,8 @@ extern Chain_Control _User_extensions_Switches_list;
/**
* @name Extension Maintainance
- *
- * @{
*/
+/**@{**/
void _User_extensions_Handler_initialization( void );
@@ -158,9 +156,8 @@ void _User_extensions_Iterate(
/**
* @name Extension Callout Dispatcher
- *
- * @{
*/
+/**@{**/
static inline bool _User_extensions_Thread_create( Thread_Control *created )
{