summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2023-05-09 14:03:22 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2023-05-09 14:03:22 +0200
commit6896c99f354238fca35bb804be04538c756a6900 (patch)
tree7c1200d81479c31c2fd6be0363e447cd9add12cb
parent2e63b5e261ac8ee62bc75edd1a4e3e0e0a2c6465 (diff)
rtems: Reference types in construct directivesqual-83
-rw-r--r--cpukit/include/rtems/rtems/message.h3
-rw-r--r--cpukit/include/rtems/rtems/tasks.h3
2 files changed, 4 insertions, 2 deletions
diff --git a/cpukit/include/rtems/rtems/message.h b/cpukit/include/rtems/rtems/message.h
index cd951f584b..d1432ffbb8 100644
--- a/cpukit/include/rtems/rtems/message.h
+++ b/cpukit/include/rtems/rtems/message.h
@@ -292,7 +292,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