summaryrefslogtreecommitdiffstats
path: root/cpukit/score
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/score
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/score')
-rw-r--r--cpukit/score/cpu/m68k/rtems/score/m68k.h10
-rw-r--r--cpukit/score/include/rtems/score/coremsgimpl.h6
-rw-r--r--cpukit/score/include/rtems/score/coresemimpl.h3
-rw-r--r--cpukit/score/src/coremutexsurrender.c2
4 files changed, 4 insertions, 17 deletions
diff --git a/cpukit/score/cpu/m68k/rtems/score/m68k.h b/cpukit/score/cpu/m68k/rtems/score/m68k.h
index 3a5a009e44..818578c078 100644
--- a/cpukit/score/cpu/m68k/rtems/score/m68k.h
+++ b/cpukit/score/cpu/m68k/rtems/score/m68k.h
@@ -480,13 +480,11 @@ static inline uint16_t m68k_swap_u16(
/*
* _CPU_virtual_to_physical
*
- * DESCRIPTION:
+ * This function is used to map virtual addresses to physical
+ * addresses.
*
- * This function is used to map virtual addresses to physical
- * addresses.
- *
- * FIXME: ASSUMES THAT VIRTUAL ADDRESSES ARE THE SAME AS THE
- * PHYSICAL ADDRESSES
+ * FIXME: ASSUMES THAT VIRTUAL ADDRESSES ARE THE SAME AS THE
+ * PHYSICAL ADDRESSES
*/
static inline void * _CPU_virtual_to_physical (
const void * d_addr )
diff --git a/cpukit/score/include/rtems/score/coremsgimpl.h b/cpukit/score/include/rtems/score/coremsgimpl.h
index 6c1f901eed..52796ad885 100644
--- a/cpukit/score/include/rtems/score/coremsgimpl.h
+++ b/cpukit/score/include/rtems/score/coremsgimpl.h
@@ -113,8 +113,6 @@ typedef void ( *CORE_message_queue_API_mp_support_callout )(
/**
* @brief Initialize a message queue.
*
- * DESCRIPTION:
- *
* This package is the implementation of the CORE Message Queue Handler.
* This core object provides task synchronization and communication functions
* via messages passed to queue objects.
@@ -144,7 +142,6 @@ bool _CORE_message_queue_Initialize(
/**
* @brief Close a message queue.
*
- * DESCRIPTION:
* This package is the implementation of the CORE Message Queue Handler.
* This core object provides task synchronization and communication functions
* via messages passed to queue objects
@@ -167,7 +164,6 @@ void _CORE_message_queue_Close(
/**
* @brief Flush pending messages.
*
- * DESCRIPTION:
* This package is the implementation of the CORE Message Queue Handler.
* This core object provides task synchronization and communication functions
* via messages passed to queue objects.
@@ -220,7 +216,6 @@ uint32_t _CORE_message_queue_Flush_support(
/**
* @brief Broadcast a message to the message queue.
*
- * DESCRIPTION:
* This package is the implementation of the CORE Message Queue Handler.
* This core object provides task synchronization and communication functions
* via messages passed to queue objects.
@@ -289,7 +284,6 @@ CORE_message_queue_Status _CORE_message_queue_Submit(
/**
* @brief Size a message from the message queue.
*
- * DESCRIPTION:
* This package is the implementation of the CORE Message Queue Handler.
* This core object provides task synchronization and communication functions
* via messages passed to queue objects.
diff --git a/cpukit/score/include/rtems/score/coresemimpl.h b/cpukit/score/include/rtems/score/coresemimpl.h
index a29ee281b2..fda908ec83 100644
--- a/cpukit/score/include/rtems/score/coresemimpl.h
+++ b/cpukit/score/include/rtems/score/coresemimpl.h
@@ -81,8 +81,6 @@ typedef void ( *CORE_semaphore_API_mp_support_callout )(
/**
* @brief Initialize the semaphore based on the parameters passed.
*
- * 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.
@@ -147,7 +145,6 @@ CORE_semaphore_Status _CORE_semaphore_Surrender(
/**
* @brief Core semaphore flush.
*
- * 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.
diff --git a/cpukit/score/src/coremutexsurrender.c b/cpukit/score/src/coremutexsurrender.c
index 7a7a047f39..8fba301de9 100644
--- a/cpukit/score/src/coremutexsurrender.c
+++ b/cpukit/score/src/coremutexsurrender.c
@@ -71,8 +71,6 @@
/*
* _CORE_mutex_Surrender
*
- * DESCRIPTION:
- *
* This routine frees a unit to the mutex. If a task was blocked waiting for
* a unit from this mutex, then that task will be readied and the unit
* given to that task. Otherwise, the unit will be returned to the mutex.