[rtems commit] rtems: Reference types in construct directives

Sebastian Huber sebh at rtems.org
Fri May 19 05:55:31 UTC 2023


Module:    rtems
Branch:    master
Commit:    c588daecb9e8d060dee559f576958b496fcf9674
Changeset: http://git.rtems.org/rtems/commit/?id=c588daecb9e8d060dee559f576958b496fcf9674

Author:    Sebastian Huber <sebastian.huber at embedded-brains.de>
Date:      Tue May  9 14:03:22 2023 +0200

rtems: Reference types in construct directives

---

 cpukit/include/rtems/rtems/message.h | 3 ++-
 cpukit/include/rtems/rtems/tasks.h   | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/cpukit/include/rtems/rtems/message.h b/cpukit/include/rtems/rtems/message.h
index a7575b81e2..8ab488b7e6 100644
--- a/cpukit/include/rtems/rtems/message.h
+++ b/cpukit/include/rtems/rtems/message.h
@@ -288,7 +288,8 @@ rtems_status_code rtems_message_queue_create(
  * @brief Constructs a message queue from the specified the message queue
  *   configuration.
  *
- * @param config is the message queue configuration.
+ * @param config is the pointer to an rtems_message_queue_config object.  It
+ *   configures the message queue.
  *
  * @param[out] id is the pointer to an ::rtems_id object.  When the directive
  *   call is successful, the identifier of the constructed message queue will
diff --git a/cpukit/include/rtems/rtems/tasks.h b/cpukit/include/rtems/rtems/tasks.h
index 3214dad3f8..57ca618c48 100644
--- a/cpukit/include/rtems/rtems/tasks.h
+++ b/cpukit/include/rtems/rtems/tasks.h
@@ -671,7 +671,8 @@ rtems_status_code rtems_task_create(
  *
  * @brief Constructs a task from the specified task configuration.
  *
- * @param config is the task configuration.
+ * @param config is the pointer to an rtems_task_config object.  It configures
+ *   the task.
  *
  * @param[out] id is the pointer to an ::rtems_id object.  When the directive
  *   call is successful, the identifier of the constructed task will be stored



More information about the vc mailing list