summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/inline/rtems/rtems/tasks.inl
diff options
context:
space:
mode:
authorMathew Kallada <matkallada@gmail.com>2012-12-28 17:23:21 -0600
committerJennifer Averett <jennifer.averett@oarcorp.com>2012-12-28 17:23:21 -0600
commit7ee5bc4ce1d2b596356a5c99ca1e2240ea1f8b62 (patch)
treef5e373ae2b8c710a41bcd2050d1bdd1777cc9c6b /cpukit/rtems/inline/rtems/rtems/tasks.inl
parentHeader File Doxygen Enhancement Task #11 (diff)
downloadrtems-7ee5bc4ce1d2b596356a5c99ca1e2240ea1f8b62.tar.bz2
rtems: Doxygen Clean Up Task #3
Diffstat (limited to '')
-rw-r--r--cpukit/rtems/inline/rtems/rtems/tasks.inl10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpukit/rtems/inline/rtems/rtems/tasks.inl b/cpukit/rtems/inline/rtems/rtems/tasks.inl
index 193b0ad79c..3bf82121d7 100644
--- a/cpukit/rtems/inline/rtems/rtems/tasks.inl
+++ b/cpukit/rtems/inline/rtems/rtems/tasks.inl
@@ -26,7 +26,7 @@
*/
/**
- * @brief RTEMS_tasks_Allocate
+ * @brief Allocates a task control block.
*
* This function allocates a task control block from
* the inactive chain of free task control blocks.
@@ -37,7 +37,7 @@ RTEMS_INLINE_ROUTINE Thread_Control *_RTEMS_tasks_Allocate( void )
}
/**
- * @brief RTEMS_tasks_Free
+ * @brief Frees a task control block.
*
* This routine frees a task control block to the
* inactive chain of free task control blocks.
@@ -46,14 +46,14 @@ RTEMS_INLINE_ROUTINE void _RTEMS_tasks_Free (
Thread_Control *the_task
)
{
- _Objects_Free(
+ _Objects_Free(
_Objects_Get_information_id( the_task->Object.id ),
&the_task->Object
);
}
/**
- * @brief RTEMS_tasks_Priority_to_Core
+ * @brief Converts an RTEMS API priority into a core priority.
*
* This function converts an RTEMS API priority into a core priority.
*/
@@ -65,7 +65,7 @@ RTEMS_INLINE_ROUTINE Priority_Control _RTEMS_tasks_Priority_to_Core(
}
/**
- * @brief RTEMS_tasks_Priority_is_valid
+ * @brief Checks whether the priority is a valid user task.
*
* This function returns TRUE if the_priority is a valid user task priority
* and FALSE otherwise.