summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/rtems/tasks.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2023-07-22 11:46:42 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2023-07-25 07:26:01 +0200
commit0e70e989e6cf957a3ac267240e55b39de6c46537 (patch)
tree100493783c67f1bcd7dd51c3d41f8c52a9919232 /cpukit/include/rtems/rtems/tasks.h
parentbsps/arm: Fix CMSIS v5 install files list (diff)
downloadrtems-0e70e989e6cf957a3ac267240e55b39de6c46537.tar.bz2
rtems: Improve task entry wording
Diffstat (limited to '')
-rw-r--r--cpukit/include/rtems/rtems/tasks.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/include/rtems/rtems/tasks.h b/cpukit/include/rtems/rtems/tasks.h
index 586b6c2530..84dd646fe7 100644
--- a/cpukit/include/rtems/rtems/tasks.h
+++ b/cpukit/include/rtems/rtems/tasks.h
@@ -234,7 +234,7 @@ typedef void rtems_task;
/**
* @ingroup RTEMSAPIClassicTasks
*
- * @brief This type defines the entry point of an RTEMS task.
+ * @brief This type defines the task entry point of an RTEMS task.
*/
typedef rtems_task ( *rtems_task_entry )( rtems_task_argument );
@@ -897,8 +897,8 @@ rtems_id rtems_task_self( void );
*
* This directive readies the task, specified by ``id``, for execution based on
* the priority and execution mode specified when the task was created. The
- * entry point of the task is given in ``entry_point``. The task's entry point
- * argument is contained in ``argument``.
+ * task entry point of the task is given in ``entry_point``. The task's entry
+ * point argument is contained in ``argument``.
*
* @retval ::RTEMS_SUCCESSFUL The requested operation was successful.
*