summaryrefslogtreecommitdiffstats
path: root/testsuites/validation/tc-signal-send.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-03-02 07:54:17 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-03-02 07:56:15 +0100
commitc0c4b8b8b5cb551906e12c1149874a337af2edb6 (patch)
tree71c7b4e8906411d893a50425eb325471d8759851 /testsuites/validation/tc-signal-send.c
parentscore: Simplify _Objects_Name_to_id_u32() (diff)
downloadrtems-c0c4b8b8b5cb551906e12c1149874a337af2edb6.tar.bz2
validation: Format comment blocks
Diffstat (limited to 'testsuites/validation/tc-signal-send.c')
-rw-r--r--testsuites/validation/tc-signal-send.c24
1 files changed, 10 insertions, 14 deletions
diff --git a/testsuites/validation/tc-signal-send.c b/testsuites/validation/tc-signal-send.c
index cf5235f752..382a7167ca 100644
--- a/testsuites/validation/tc-signal-send.c
+++ b/testsuites/validation/tc-signal-send.c
@@ -380,8 +380,7 @@ static void RtemsSignalReqSend_Pre_Task_Prepare(
case RtemsSignalReqSend_Pre_Task_Self: {
/*
- * The ``id`` parameter shall be associated with
- * the calling task.
+ * The ``id`` parameter shall be associated with the calling task.
*/
ctx->id = RTEMS_SELF;
break;
@@ -389,8 +388,8 @@ static void RtemsSignalReqSend_Pre_Task_Prepare(
case RtemsSignalReqSend_Pre_Task_Other: {
/*
- * The ``id`` parameter shall be associated with a
- * task other than the calling task.
+ * The ``id`` parameter shall be associated with a task other than the
+ * calling task.
*/
ctx->id = ctx->worker_id;
break;
@@ -465,8 +464,8 @@ static void RtemsSignalReqSend_Pre_ASR_Prepare(
switch ( state ) {
case RtemsSignalReqSend_Pre_ASR_Enabled: {
/*
- * When the target task has ASR processing enabled, the rtems_signal_send()
- * directive shall be called.
+ * When the target task has ASR processing enabled, the
+ * rtems_signal_send() directive shall be called.
*/
ctx->mode = RTEMS_DEFAULT_MODES;
break;
@@ -474,8 +473,8 @@ static void RtemsSignalReqSend_Pre_ASR_Prepare(
case RtemsSignalReqSend_Pre_ASR_Disabled: {
/*
- * When the target task has ASR processing disabled, the rtems_signal_send()
- * directive shall be called.
+ * When the target task has ASR processing disabled, the
+ * rtems_signal_send() directive shall be called.
*/
ctx->mode = RTEMS_NO_ASR;
break;
@@ -523,8 +522,7 @@ static void RtemsSignalReqSend_Post_Status_Check(
switch ( state ) {
case RtemsSignalReqSend_Post_Status_Ok: {
/*
- * The return status of rtems_signal_send() shall be
- * RTEMS_SUCCESSFUL.
+ * The return status of rtems_signal_send() shall be RTEMS_SUCCESSFUL.
*/
T_rsc_success( ctx->status );
break;
@@ -541,8 +539,7 @@ static void RtemsSignalReqSend_Post_Status_Check(
case RtemsSignalReqSend_Post_Status_InvId: {
/*
- * The return status of rtems_signal_send() shall be
- * RTEMS_INVALID_ID.
+ * The return status of rtems_signal_send() shall be RTEMS_INVALID_ID.
*/
T_rsc( ctx->status, RTEMS_INVALID_ID );
break;
@@ -550,8 +547,7 @@ static void RtemsSignalReqSend_Post_Status_Check(
case RtemsSignalReqSend_Post_Status_NotDef: {
/*
- * The return status of rtems_signal_send() shall be
- * RTEMS_NOT_DEFINED.
+ * The return status of rtems_signal_send() shall be RTEMS_NOT_DEFINED.
*/
T_rsc( ctx->status, RTEMS_NOT_DEFINED );
break;