[rtems commit] testsuites: Remove stray ';'

Sebastian Huber sebh at rtems.org
Fri Jul 21 07:10:11 UTC 2023


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

Author:    Sebastian Huber <sebastian.huber at embedded-brains.de>
Date:      Fri Jul 21 09:30:07 2023 +0200

testsuites: Remove stray ';'

---

 testsuites/sptests/sptimecounter03/init.c                |  2 +-
 testsuites/tmtests/tmcontext01/init.c                    |  2 +-
 testsuites/validation/tc-clock-nanosleep.c               | 10 +++++-----
 testsuites/validation/tc-futex-wait.c                    |  2 +-
 testsuites/validation/tc-futex-wake.c                    |  2 +-
 testsuites/validation/tc-intr-entry-install.c            |  4 ++--
 testsuites/validation/tc-intr-entry-remove.c             |  4 ++--
 testsuites/validation/tc-intr-get-affinity.c             |  2 +-
 testsuites/validation/tc-intr-get-attributes.c           |  2 +-
 testsuites/validation/tc-intr-is-pending.c               |  2 +-
 testsuites/validation/tc-intr-vector-is-enabled.c        |  2 +-
 testsuites/validation/tc-message-receive.c               |  2 +-
 testsuites/validation/tc-message-urgent-send.c           |  2 +-
 testsuites/validation/tc-sched-smp.c                     |  4 ++--
 testsuites/validation/tc-scheduler-add-processor.c       |  6 +++---
 testsuites/validation/tc-scheduler-remove-processor.c    |  8 ++++----
 testsuites/validation/tc-sem-create.c                    | 10 +++++-----
 testsuites/validation/tc-sem-flush.c                     |  2 +-
 testsuites/validation/tc-sem-smp.c                       |  4 ++--
 testsuites/validation/tc-sem-timeout.c                   |  2 +-
 testsuites/validation/tc-signal-send.c                   |  4 ++--
 testsuites/validation/tc-task-construct.c                |  2 +-
 testsuites/validation/tc-task-delete.c                   | 10 +++++-----
 testsuites/validation/tc-task-restart.c                  |  6 +++---
 testsuites/validation/tc-task-set-affinity.c             |  2 +-
 testsuites/validation/tc-task-set-scheduler.c            |  2 +-
 testsuites/validation/tc-task-wake-after.c               | 10 +++++-----
 testsuites/validation/tc-task-wake-when.c                |  8 ++++----
 testsuites/validation/tc-thread-idle-body-no-return.c    |  2 +-
 testsuites/validation/tc-timer-reset.c                   |  2 +-
 testsuites/validation/tc-userext-create.c                |  4 ++--
 testsuites/validation/tr-mtx-seize-try.c                 |  8 ++++----
 testsuites/validation/tr-mtx-seize-wait.c                | 10 +++++-----
 testsuites/validation/tr-tq-enqueue-ceiling.c            |  6 +++---
 testsuites/validation/tr-tq-enqueue-mrsp.c               |  6 +++---
 testsuites/validation/tr-tq-enqueue-priority.c           |  6 +++---
 testsuites/validation/tr-tq-flush-priority-inherit.c     |  2 +-
 testsuites/validation/tr-tq-flush-priority.c             |  2 +-
 testsuites/validation/tr-tq-surrender-priority-inherit.c |  2 +-
 testsuites/validation/tr-tq-surrender.c                  |  2 +-
 testsuites/validation/tr-tq-timeout-priority-inherit.c   |  2 +-
 testsuites/validation/tr-tq-timeout.c                    |  2 +-
 42 files changed, 87 insertions(+), 87 deletions(-)

diff --git a/testsuites/sptests/sptimecounter03/init.c b/testsuites/sptests/sptimecounter03/init.c
index df305ab2f9..d1a9d58886 100644
--- a/testsuites/sptests/sptimecounter03/init.c
+++ b/testsuites/sptests/sptimecounter03/init.c
@@ -41,7 +41,7 @@ const char rtems_test_name[] = "SPTIMECOUNTER 3";
 
 #define CPU_COUNT 32
 
-static rtems_test_parallel_context ctx;;
+static rtems_test_parallel_context ctx;
 
 static rtems_interval test_binuptime_init(
   rtems_test_parallel_context *ctx,
diff --git a/testsuites/tmtests/tmcontext01/init.c b/testsuites/tmtests/tmcontext01/init.c
index 15ac4baae6..1cba67bb3f 100644
--- a/testsuites/tmtests/tmcontext01/init.c
+++ b/testsuites/tmtests/tmcontext01/init.c
@@ -79,7 +79,7 @@ static int call_at_level(
   bool dirty
 )
 {
-  int prevent_optimization;;
+  int prevent_optimization;
 
   prevent_optimization = start + fl;
 
diff --git a/testsuites/validation/tc-clock-nanosleep.c b/testsuites/validation/tc-clock-nanosleep.c
index 2e2d9e343c..514f5376ba 100644
--- a/testsuites/validation/tc-clock-nanosleep.c
+++ b/testsuites/validation/tc-clock-nanosleep.c
@@ -166,29 +166,29 @@ typedef struct {
   /**
    * @brief This member provides the scheduler operation records.
    */
-  T_scheduler_log_4 scheduler_log;;
+  T_scheduler_log_4 scheduler_log;
 
   /**
    * @brief This member contains the CLOCK_REALTIME value before the
    *   clock_nanosleep() call.
    */
-  struct timespec now_realtime;;
+  struct timespec now_realtime;
 
   /**
    * @brief This member contains the CLOCK_MONOTONIC value before the
    *   clock_nanosleep() call.
    */
-  struct timespec now_monotonic;;
+  struct timespec now_monotonic;
 
   /**
    * @brief This member contains the worker task identifier.
    */
-  rtems_id worker_id;;
+  rtems_id worker_id;
 
   /**
    * @brief This member contains the timer information of the worker task.
    */
-  TaskTimerInfo timer_info;;
+  TaskTimerInfo timer_info;
 
   /**
    * @brief This member provides the object referenced by the ``rqtp``
diff --git a/testsuites/validation/tc-futex-wait.c b/testsuites/validation/tc-futex-wait.c
index 700ee74636..3730df2a40 100644
--- a/testsuites/validation/tc-futex-wait.c
+++ b/testsuites/validation/tc-futex-wait.c
@@ -101,7 +101,7 @@ typedef struct {
   /**
    * @brief This member contains the thread queue test context.
    */
-  TQContext tq_ctx;;
+  TQContext tq_ctx;
 
   /**
    * @brief This member specifies the expected futex state value.
diff --git a/testsuites/validation/tc-futex-wake.c b/testsuites/validation/tc-futex-wake.c
index 67d5f8a4f0..baaa0daa6b 100644
--- a/testsuites/validation/tc-futex-wake.c
+++ b/testsuites/validation/tc-futex-wake.c
@@ -100,7 +100,7 @@ typedef struct {
   /**
    * @brief This member contains the thread queue test context.
    */
-  TQContext tq_ctx;;
+  TQContext tq_ctx;
 
   /**
    * @brief This member provides the futex object.
diff --git a/testsuites/validation/tc-intr-entry-install.c b/testsuites/validation/tc-intr-entry-install.c
index 2a78681346..d1fa470d0c 100644
--- a/testsuites/validation/tc-intr-entry-install.c
+++ b/testsuites/validation/tc-intr-entry-install.c
@@ -180,7 +180,7 @@ typedef struct {
   /**
    * @brief This member provides a counter snapshot for each entry.
    */
-  uint32_t counter_by_entry[ 3 ];;
+  uint32_t counter_by_entry[ 3 ];
 
   /**
    * @brief This member provides the vector number of a testable interrupt
@@ -272,7 +272,7 @@ typedef struct {
   /**
    * @brief This member specifies if the ``entry`` parameter value.
    */
-  rtems_interrupt_entry *entry;;
+  rtems_interrupt_entry *entry;
 
   /**
    * @brief This member contains the return value of the
diff --git a/testsuites/validation/tc-intr-entry-remove.c b/testsuites/validation/tc-intr-entry-remove.c
index b6e0207ad3..01a72410e1 100644
--- a/testsuites/validation/tc-intr-entry-remove.c
+++ b/testsuites/validation/tc-intr-entry-remove.c
@@ -181,7 +181,7 @@ typedef struct {
   /**
    * @brief This member provides a counter incremented by EntryRoutine().
    */
-  uint32_t entry_counter;;
+  uint32_t entry_counter;
 
   /**
    * @brief This member provides another rtems_interrupt_entry object.
@@ -285,7 +285,7 @@ typedef struct {
   /**
    * @brief This member specifies if the ``entry`` parameter value.
    */
-  rtems_interrupt_entry *entry;;
+  rtems_interrupt_entry *entry;
 
   /**
    * @brief This member contains the return value of the
diff --git a/testsuites/validation/tc-intr-get-affinity.c b/testsuites/validation/tc-intr-get-affinity.c
index 713a5b483f..60509203b4 100644
--- a/testsuites/validation/tc-intr-get-affinity.c
+++ b/testsuites/validation/tc-intr-get-affinity.c
@@ -138,7 +138,7 @@ typedef struct {
    * @brief This member provides the object referenced by the ``affinity``
    *   parameter.
    */
-  cpu_set_t cpuset_obj[ 2 ];;
+  cpu_set_t cpuset_obj[ 2 ];
 
   /**
    * @brief This member contains the return value of the
diff --git a/testsuites/validation/tc-intr-get-attributes.c b/testsuites/validation/tc-intr-get-attributes.c
index 5b8c3fbcac..4594c78a2e 100644
--- a/testsuites/validation/tc-intr-get-attributes.c
+++ b/testsuites/validation/tc-intr-get-attributes.c
@@ -118,7 +118,7 @@ typedef struct {
   /**
    * @brief This member specifies if the ``attributes`` parameter value.
    */
-  rtems_interrupt_attributes *attributes;;
+  rtems_interrupt_attributes *attributes;
 
   /**
    * @brief This member contains the return value of the
diff --git a/testsuites/validation/tc-intr-is-pending.c b/testsuites/validation/tc-intr-is-pending.c
index d1b8f73d78..097e3d7a17 100644
--- a/testsuites/validation/tc-intr-is-pending.c
+++ b/testsuites/validation/tc-intr-is-pending.c
@@ -142,7 +142,7 @@ typedef struct {
   /**
    * @brief This member specifies if the ``pending`` parameter value.
    */
-  bool *pending;;
+  bool *pending;
 
   /**
    * @brief This member contains the return value of the
diff --git a/testsuites/validation/tc-intr-vector-is-enabled.c b/testsuites/validation/tc-intr-vector-is-enabled.c
index bf7be7ac2c..d24ad3f602 100644
--- a/testsuites/validation/tc-intr-vector-is-enabled.c
+++ b/testsuites/validation/tc-intr-vector-is-enabled.c
@@ -143,7 +143,7 @@ typedef struct {
   /**
    * @brief This member specifies if the ``enabled`` parameter value.
    */
-  bool *enabled;;
+  bool *enabled;
 
   /**
    * @brief This member contains the return value of the
diff --git a/testsuites/validation/tc-message-receive.c b/testsuites/validation/tc-message-receive.c
index 1ca7afd221..944512eaa8 100644
--- a/testsuites/validation/tc-message-receive.c
+++ b/testsuites/validation/tc-message-receive.c
@@ -207,7 +207,7 @@ typedef struct {
    *
    * It is used for run-time type checking.
    */
-  uint32_t magic;;
+  uint32_t magic;
 
   /**
    * @brief This member contains a number which is sent as next message.
diff --git a/testsuites/validation/tc-message-urgent-send.c b/testsuites/validation/tc-message-urgent-send.c
index 7640137ebb..e7364f108d 100644
--- a/testsuites/validation/tc-message-urgent-send.c
+++ b/testsuites/validation/tc-message-urgent-send.c
@@ -172,7 +172,7 @@ typedef struct {
    *
    * It is used for run-time type checking.
    */
-  uint32_t magic;;
+  uint32_t magic;
 
   /**
    * @brief This member contains a number which is sent as next message.
diff --git a/testsuites/validation/tc-sched-smp.c b/testsuites/validation/tc-sched-smp.c
index 930ebb048c..0e8b9b92e9 100644
--- a/testsuites/validation/tc-sched-smp.c
+++ b/testsuites/validation/tc-sched-smp.c
@@ -284,7 +284,7 @@ typedef struct {
   /**
    * @brief If this member is true, then the worker shall be in the busy loop.
    */
-  volatile bool is_busy[ WORKER_COUNT ];;
+  volatile bool is_busy[ WORKER_COUNT ];
 
   /**
    * @brief This member contains the per-CPU jobs.
@@ -299,7 +299,7 @@ typedef struct {
   /**
    * @brief This member contains the call within ISR request.
    */
-  CallWithinISRRequest request;;
+  CallWithinISRRequest request;
 } ScoreSchedSmpValSmp_Context;
 
 static ScoreSchedSmpValSmp_Context
diff --git a/testsuites/validation/tc-scheduler-add-processor.c b/testsuites/validation/tc-scheduler-add-processor.c
index ca86eb4d32..a26132aea0 100644
--- a/testsuites/validation/tc-scheduler-add-processor.c
+++ b/testsuites/validation/tc-scheduler-add-processor.c
@@ -155,18 +155,18 @@ typedef struct {
    * @brief This member contains the online status of the processor to add
    *   before the rtems_scheduler_add_processor() call is prepared.
    */
-  bool online;;
+  bool online;
 
   /**
    * @brief If this member is true, then the processor should be added to the
    *   scheduler B during cleanup.
    */
-  bool add_cpu_to_scheduler_b;;
+  bool add_cpu_to_scheduler_b;
 
   /**
    * @brief This member provides the scheduler operation records.
    */
-  T_scheduler_log_2 scheduler_log;;
+  T_scheduler_log_2 scheduler_log;
 
   /**
    * @brief This member contains the return value of the
diff --git a/testsuites/validation/tc-scheduler-remove-processor.c b/testsuites/validation/tc-scheduler-remove-processor.c
index 8af90a99d9..f199389a33 100644
--- a/testsuites/validation/tc-scheduler-remove-processor.c
+++ b/testsuites/validation/tc-scheduler-remove-processor.c
@@ -177,12 +177,12 @@ typedef struct {
   /**
    * @brief This member contains the worker busy status.
    */
-  volatile bool busy[ WORKER_COUNT ];;
+  volatile bool busy[ WORKER_COUNT ];
 
   /**
    * @brief This member contains the worker busy status.
    */
-  volatile uint32_t busy_counter[ WORKER_COUNT ];;
+  volatile uint32_t busy_counter[ WORKER_COUNT ];
 
   /**
    * @brief This member contains the barrier to synchronize the runner and the
@@ -193,7 +193,7 @@ typedef struct {
   /**
    * @brief This member contains the call within ISR request.
    */
-  CallWithinISRRequest request;;
+  CallWithinISRRequest request;
 
   /**
    * @brief This member provides the context to wrap thread queue operations.
@@ -246,7 +246,7 @@ typedef struct {
   /**
    * @brief This member provides the scheduler operation records.
    */
-  T_scheduler_log_4 scheduler_log;;
+  T_scheduler_log_4 scheduler_log;
 
   /**
    * @brief This member contains the return value of the
diff --git a/testsuites/validation/tc-sem-create.c b/testsuites/validation/tc-sem-create.c
index 3d57fefcc0..9975cb0778 100644
--- a/testsuites/validation/tc-sem-create.c
+++ b/testsuites/validation/tc-sem-create.c
@@ -224,15 +224,15 @@ typedef struct {
 
   rtems_status_code status;
 
-  Semaphore_Variant variant;;
+  Semaphore_Variant variant;
 
-  Semaphore_Discipline discipline;;
+  Semaphore_Discipline discipline;
 
-  uint32_t sem_count;;
+  uint32_t sem_count;
 
-  Thread_Control *executing;;
+  Thread_Control *executing;
 
-  Thread_Control *owner;;
+  Thread_Control *owner;
 
   rtems_name name;
 
diff --git a/testsuites/validation/tc-sem-flush.c b/testsuites/validation/tc-sem-flush.c
index da4ffb2940..ae25c6da9b 100644
--- a/testsuites/validation/tc-sem-flush.c
+++ b/testsuites/validation/tc-sem-flush.c
@@ -118,7 +118,7 @@ typedef struct {
   /**
    * @brief This member contains the thread queue test context.
    */
-  TQContext tq_ctx;;
+  TQContext tq_ctx;
 
   /**
    * @brief This member specifies if the attribute set of the semaphore.
diff --git a/testsuites/validation/tc-sem-smp.c b/testsuites/validation/tc-sem-smp.c
index aa0c7dda0d..5dc3f437a1 100644
--- a/testsuites/validation/tc-sem-smp.c
+++ b/testsuites/validation/tc-sem-smp.c
@@ -123,12 +123,12 @@ typedef struct {
   /**
    * @brief This member contains the mutex identifier.
    */
-  rtems_id mutex_id;;
+  rtems_id mutex_id;
 
   /**
    * @brief This member contains the second mutex identifier.
    */
-  rtems_id mutex_2_id;;
+  rtems_id mutex_2_id;
 
   /**
    * @brief If this member is true, then the worker is done.
diff --git a/testsuites/validation/tc-sem-timeout.c b/testsuites/validation/tc-sem-timeout.c
index bdf46fe6de..db7f2fea21 100644
--- a/testsuites/validation/tc-sem-timeout.c
+++ b/testsuites/validation/tc-sem-timeout.c
@@ -108,7 +108,7 @@ typedef struct {
   /**
    * @brief This member contains the thread queue test context.
    */
-  TQContext tq_ctx;;
+  TQContext tq_ctx;
 
   /**
    * @brief This member specifies if the attribute set of the semaphore.
diff --git a/testsuites/validation/tc-signal-send.c b/testsuites/validation/tc-signal-send.c
index 82cde6c5cc..aedcec5e47 100644
--- a/testsuites/validation/tc-signal-send.c
+++ b/testsuites/validation/tc-signal-send.c
@@ -154,9 +154,9 @@ typedef struct {
 
   rtems_signal_set processed_signal_sets[ 2 ];
 
-  uintptr_t stack_pointers[ 2 ];;
+  uintptr_t stack_pointers[ 2 ];
 
-  rtems_mode mode;;
+  rtems_mode mode;
 
   rtems_status_code status;
 
diff --git a/testsuites/validation/tc-task-construct.c b/testsuites/validation/tc-task-construct.c
index 8f82db8b54..5a7ca4f497 100644
--- a/testsuites/validation/tc-task-construct.c
+++ b/testsuites/validation/tc-task-construct.c
@@ -291,7 +291,7 @@ typedef struct {
    * @brief If this member is true, then the zombie thread is ready to get
    *   killed.
    */
-  volatile bool zombie_ready;;
+  volatile bool zombie_ready;
 
   /**
    * @brief This member contains the actual modes of the constructed task.
diff --git a/testsuites/validation/tc-task-delete.c b/testsuites/validation/tc-task-delete.c
index d8d708171b..3172604eff 100644
--- a/testsuites/validation/tc-task-delete.c
+++ b/testsuites/validation/tc-task-delete.c
@@ -262,7 +262,7 @@ typedef struct {
   /**
    * @brief This member provides a jump context to resume a thread dispatch.
    */
-  jmp_buf thread_dispatch_context;;
+  jmp_buf thread_dispatch_context;
 
   /**
    * @brief This member contains the identifier of the runner scheduler.
@@ -310,13 +310,13 @@ typedef struct {
    * @brief This member contains the worker timer info at the end of the
    *   rtems_task_delete() call.
    */
-  TaskTimerInfo worker_timer_info;;
+  TaskTimerInfo worker_timer_info;
 
   /**
    * @brief This member contains the worker thread queue at the end of the
    *   rtems_task_delete() call.
    */
-  const Thread_queue_Queue *worker_wait_queue;;
+  const Thread_queue_Queue *worker_wait_queue;
 
   /**
    * @brief This member contains the worker thread life state at the end of the
@@ -358,13 +358,13 @@ typedef struct {
   /**
    * @brief This member contains extension calls.
    */
-  ExtensionCalls calls;;
+  ExtensionCalls calls;
 
   /**
    * @brief This member contains extension calls after the rtems_task_delete()
    *   call.
    */
-  ExtensionCalls calls_after_restart;;
+  ExtensionCalls calls_after_restart;
 
   /**
    * @brief This member contains the delete counter.
diff --git a/testsuites/validation/tc-task-restart.c b/testsuites/validation/tc-task-restart.c
index e62dbbb567..c915f01a49 100644
--- a/testsuites/validation/tc-task-restart.c
+++ b/testsuites/validation/tc-task-restart.c
@@ -251,7 +251,7 @@ typedef struct {
   /**
    * @brief This member provides a jump context to resume a thread dispatch.
    */
-  jmp_buf thread_dispatch_context;;
+  jmp_buf thread_dispatch_context;
 
   /**
    * @brief This member provides the context to wrap thread queue operations.
@@ -319,13 +319,13 @@ typedef struct {
   /**
    * @brief This member contains extension calls.
    */
-  ExtensionCalls calls;;
+  ExtensionCalls calls;
 
   /**
    * @brief This member contains extension calls after the rtems_task_restart()
    *   call.
    */
-  ExtensionCalls calls_after_restart;;
+  ExtensionCalls calls_after_restart;
 
   /**
    * @brief This member contains the actual argument passed to the entry point.
diff --git a/testsuites/validation/tc-task-set-affinity.c b/testsuites/validation/tc-task-set-affinity.c
index 5f11b0250c..9502d009e1 100644
--- a/testsuites/validation/tc-task-set-affinity.c
+++ b/testsuites/validation/tc-task-set-affinity.c
@@ -131,7 +131,7 @@ typedef struct {
   /**
    * @brief This member provides the scheduler operation records.
    */
-  T_scheduler_log_2 scheduler_log;;
+  T_scheduler_log_2 scheduler_log;
 
   /**
    * @brief This member provides the object referenced by the ``cpuset``
diff --git a/testsuites/validation/tc-task-set-scheduler.c b/testsuites/validation/tc-task-set-scheduler.c
index eef4295a73..174aa55736 100644
--- a/testsuites/validation/tc-task-set-scheduler.c
+++ b/testsuites/validation/tc-task-set-scheduler.c
@@ -266,7 +266,7 @@ typedef struct {
   /**
    * @brief This member contains the identifier of the new scheduler.
    */
-  rtems_id new_scheduler;;
+  rtems_id new_scheduler;
 
   /**
    * @brief This member contains the new priorities of the task.
diff --git a/testsuites/validation/tc-task-wake-after.c b/testsuites/validation/tc-task-wake-after.c
index b600644efe..ba12d21c85 100644
--- a/testsuites/validation/tc-task-wake-after.c
+++ b/testsuites/validation/tc-task-wake-after.c
@@ -122,29 +122,29 @@ typedef struct {
   /**
    * @brief This member provides the scheduler operation records.
    */
-  T_scheduler_log_4 scheduler_log;;
+  T_scheduler_log_4 scheduler_log;
 
   /**
    * @brief This member contains the clock tick value before the
    *   rtems_task_wake_after() call.
    */
-  uint64_t now;;
+  uint64_t now;
 
   /**
    * @brief This member contains the worker task identifier.
    */
-  rtems_id worker_id;;
+  rtems_id worker_id;
 
   /**
    * @brief If this member is true, then the worker shall be suspended during
    *   the rtems_task_wake_after() call.
    */
-  bool suspended;;
+  bool suspended;
 
   /**
    * @brief This member contains the timer information of the worker task.
    */
-  TaskTimerInfo timer_info;;
+  TaskTimerInfo timer_info;
 
   /**
    * @brief This member contains the return value of the
diff --git a/testsuites/validation/tc-task-wake-when.c b/testsuites/validation/tc-task-wake-when.c
index cd95555adc..bb31fded26 100644
--- a/testsuites/validation/tc-task-wake-when.c
+++ b/testsuites/validation/tc-task-wake-when.c
@@ -131,23 +131,23 @@ typedef struct {
   /**
    * @brief This member provides the scheduler operation records.
    */
-  T_scheduler_log_4 scheduler_log;;
+  T_scheduler_log_4 scheduler_log;
 
   /**
    * @brief This member contains the CLOCK_REALTIME value before the
    *   rtems_task_wake_when() call.
    */
-  struct timespec now;;
+  struct timespec now;
 
   /**
    * @brief This member contains the worker task identifier.
    */
-  rtems_id worker_id;;
+  rtems_id worker_id;
 
   /**
    * @brief This member contains the timer information of the worker task.
    */
-  TaskTimerInfo timer_info;;
+  TaskTimerInfo timer_info;
 
   /**
    * @brief This member provides the object referenced by the ``time_buffer``
diff --git a/testsuites/validation/tc-thread-idle-body-no-return.c b/testsuites/validation/tc-thread-idle-body-no-return.c
index 303f80faf9..49caf8b03d 100644
--- a/testsuites/validation/tc-thread-idle-body-no-return.c
+++ b/testsuites/validation/tc-thread-idle-body-no-return.c
@@ -90,7 +90,7 @@ typedef struct {
   /**
    * @brief This member contains a counter.
    */
-  uint32_t counter;;
+  uint32_t counter;
 } ScoreThreadValIdleBodyNoReturn_Context;
 
 static ScoreThreadValIdleBodyNoReturn_Context
diff --git a/testsuites/validation/tc-timer-reset.c b/testsuites/validation/tc-timer-reset.c
index d720b83073..709b9fe8a5 100644
--- a/testsuites/validation/tc-timer-reset.c
+++ b/testsuites/validation/tc-timer-reset.c
@@ -225,7 +225,7 @@ typedef struct {
    * @brief This member contains a reference to the user data to be used in the
    *   next call to the Timer Service Routine.
    */
-  void **scheduled_user_data;;
+  void **scheduled_user_data;
 
   /**
    * @brief This member contains 1 if the Timer Service Routine "A" has been
diff --git a/testsuites/validation/tc-userext-create.c b/testsuites/validation/tc-userext-create.c
index 9a23523190..a15ccf6c1a 100644
--- a/testsuites/validation/tc-userext-create.c
+++ b/testsuites/validation/tc-userext-create.c
@@ -129,13 +129,13 @@ typedef struct {
 typedef struct {
   void *seized_objects;
 
-  rtems_extensions_table table_variable;;
+  rtems_extensions_table table_variable;
 
   rtems_id id_value;
 
   rtems_name name;
 
-  rtems_extensions_table *table;;
+  rtems_extensions_table *table;
 
   rtems_id *id;
 
diff --git a/testsuites/validation/tr-mtx-seize-try.c b/testsuites/validation/tr-mtx-seize-try.c
index 23f90629c9..ed6327f448 100644
--- a/testsuites/validation/tr-mtx-seize-try.c
+++ b/testsuites/validation/tr-mtx-seize-try.c
@@ -88,19 +88,19 @@ typedef struct {
    * @brief If this member is true, then the calling thread shall be the owner
    *   of the mutex.
    */
-  bool owner_caller;;
+  bool owner_caller;
 
   /**
    * @brief If this member is true, then a thread other than the calling thread
    *   shall be the owner of the mutex.
    */
-  bool owner_other;;
+  bool owner_other;
 
   /**
    * @brief This member contains the current priority of the calling thread
    *   before the directive call.
    */
-  rtems_task_priority priority_before;;
+  rtems_task_priority priority_before;
 
   /**
    * @brief This member contains the owner of the mutex after the directive
@@ -112,7 +112,7 @@ typedef struct {
    * @brief This member contains the current priority of the calling thread
    *   after the directive call.
    */
-  rtems_task_priority priority_after;;
+  rtems_task_priority priority_after;
 
   /**
    * @brief This member contains a copy of the corresponding
diff --git a/testsuites/validation/tr-mtx-seize-wait.c b/testsuites/validation/tr-mtx-seize-wait.c
index 5a8747b5d6..829b5334b0 100644
--- a/testsuites/validation/tr-mtx-seize-wait.c
+++ b/testsuites/validation/tr-mtx-seize-wait.c
@@ -92,24 +92,24 @@ typedef struct {
    * @brief If this member is true, then the calling thread shall be the owner
    *   of the mutex.
    */
-  bool owner_caller;;
+  bool owner_caller;
 
   /**
    * @brief If this member is true, then a thread other than the calling thread
    *   shall be the owner of the mutex.
    */
-  bool owner_other;;
+  bool owner_other;
 
   /**
    * @brief If this member is true, then a deadlock shall occur.
    */
-  bool deadlock;;
+  bool deadlock;
 
   /**
    * @brief This member contains the current priority of the calling thread
    *   before the directive call.
    */
-  rtems_task_priority priority_before;;
+  rtems_task_priority priority_before;
 
   /**
    * @brief This member contains the owner of the mutex after the directive
@@ -121,7 +121,7 @@ typedef struct {
    * @brief This member contains the current priority of the calling thread
    *   after the directive call.
    */
-  rtems_task_priority priority_after;;
+  rtems_task_priority priority_after;
 
   /**
    * @brief This member contains a copy of the corresponding
diff --git a/testsuites/validation/tr-tq-enqueue-ceiling.c b/testsuites/validation/tr-tq-enqueue-ceiling.c
index 107f32984c..75e63ab37c 100644
--- a/testsuites/validation/tr-tq-enqueue-ceiling.c
+++ b/testsuites/validation/tr-tq-enqueue-ceiling.c
@@ -86,7 +86,7 @@ typedef struct {
    * @brief This member specifies the priority of a thread with an eligible
    *   scheduler equal to an eligible scheduler of the enqueueing thread.
    */
-  rtems_task_priority priority;;
+  rtems_task_priority priority;
 
   /**
    * @brief If this member is true, then a thread those eligible schedulers are
@@ -94,7 +94,7 @@ typedef struct {
    *   thread with an eligible scheduler equal to an eligible scheduler of the
    *   enqueueing thread.
    */
-  size_t other_before;;
+  size_t other_before;
 
   /**
    * @brief If this member is true, then a thread those eligible schedulers are
@@ -102,7 +102,7 @@ typedef struct {
    *   thread with an eligible scheduler equal to an eligible scheduler of the
    *   enqueueing thread.
    */
-  size_t other_after;;
+  size_t other_after;
 
   /**
    * @brief This member contains a copy of the corresponding
diff --git a/testsuites/validation/tr-tq-enqueue-mrsp.c b/testsuites/validation/tr-tq-enqueue-mrsp.c
index dbf5a6aa4b..168ba008bd 100644
--- a/testsuites/validation/tr-tq-enqueue-mrsp.c
+++ b/testsuites/validation/tr-tq-enqueue-mrsp.c
@@ -88,7 +88,7 @@ typedef struct {
    *   with an eligible scheduler equal to an eligible scheduler of the
    *   enqueueing thread.
    */
-  rtems_task_priority priority;;
+  rtems_task_priority priority;
 
   /**
    * @brief If this member is true, then a thread those eligible schedulers are
@@ -96,7 +96,7 @@ typedef struct {
    *   thread with an eligible scheduler equal to an eligible scheduler of the
    *   enqueueing thread.
    */
-  size_t other_before;;
+  size_t other_before;
 
   /**
    * @brief If this member is true, then a thread those eligible schedulers are
@@ -104,7 +104,7 @@ typedef struct {
    *   thread with an eligible scheduler equal to an eligible scheduler of the
    *   enqueueing thread.
    */
-  size_t other_after;;
+  size_t other_after;
 
   /**
    * @brief This member contains a copy of the corresponding
diff --git a/testsuites/validation/tr-tq-enqueue-priority.c b/testsuites/validation/tr-tq-enqueue-priority.c
index ff0c4493e7..bf6975e977 100644
--- a/testsuites/validation/tr-tq-enqueue-priority.c
+++ b/testsuites/validation/tr-tq-enqueue-priority.c
@@ -86,7 +86,7 @@ typedef struct {
    * @brief This member specifies the priority of a thread with an eligible
    *   scheduler equal to an eligible scheduler of the enqueueing thread.
    */
-  rtems_task_priority priority;;
+  rtems_task_priority priority;
 
   /**
    * @brief If this member is true, then a thread those eligible schedulers are
@@ -94,7 +94,7 @@ typedef struct {
    *   thread with an eligible scheduler equal to an eligible scheduler of the
    *   enqueueing thread.
    */
-  size_t other_before;;
+  size_t other_before;
 
   /**
    * @brief If this member is true, then a thread those eligible schedulers are
@@ -102,7 +102,7 @@ typedef struct {
    *   thread with an eligible scheduler equal to an eligible scheduler of the
    *   enqueueing thread.
    */
-  size_t other_after;;
+  size_t other_after;
 
   /**
    * @brief This member contains a copy of the corresponding
diff --git a/testsuites/validation/tr-tq-flush-priority-inherit.c b/testsuites/validation/tr-tq-flush-priority-inherit.c
index 19198e6eae..3d75d28977 100644
--- a/testsuites/validation/tr-tq-flush-priority-inherit.c
+++ b/testsuites/validation/tr-tq-flush-priority-inherit.c
@@ -81,7 +81,7 @@ typedef struct {
   /**
    * @brief This member contains the call within ISR request.
    */
-  CallWithinISRRequest request;;
+  CallWithinISRRequest request;
 
   /**
    * @brief If this member is true, then a minimum priority of the owner of the
diff --git a/testsuites/validation/tr-tq-flush-priority.c b/testsuites/validation/tr-tq-flush-priority.c
index 3f1c1f3ca8..bf47707f0a 100644
--- a/testsuites/validation/tr-tq-flush-priority.c
+++ b/testsuites/validation/tr-tq-flush-priority.c
@@ -78,7 +78,7 @@ typedef struct {
   /**
    * @brief This member contains the call within ISR request.
    */
-  CallWithinISRRequest request;;
+  CallWithinISRRequest request;
 
   /**
    * @brief This member contains a copy of the corresponding
diff --git a/testsuites/validation/tr-tq-surrender-priority-inherit.c b/testsuites/validation/tr-tq-surrender-priority-inherit.c
index 1e6349a765..cbe235780a 100644
--- a/testsuites/validation/tr-tq-surrender-priority-inherit.c
+++ b/testsuites/validation/tr-tq-surrender-priority-inherit.c
@@ -96,7 +96,7 @@ typedef struct {
   /**
    * @brief This member contains the call within ISR request.
    */
-  CallWithinISRRequest request;;
+  CallWithinISRRequest request;
 
   /**
    * @brief This member contains the barrier to synchronize the runner and the
diff --git a/testsuites/validation/tr-tq-surrender.c b/testsuites/validation/tr-tq-surrender.c
index f2c60c5f3d..6bac073bc9 100644
--- a/testsuites/validation/tr-tq-surrender.c
+++ b/testsuites/validation/tr-tq-surrender.c
@@ -84,7 +84,7 @@ typedef struct {
   /**
    * @brief This member contains the call within ISR request.
    */
-  CallWithinISRRequest request;;
+  CallWithinISRRequest request;
 
   /**
    * @brief This member contains the barrier to synchronize the runner and the
diff --git a/testsuites/validation/tr-tq-timeout-priority-inherit.c b/testsuites/validation/tr-tq-timeout-priority-inherit.c
index c794ddc085..b562cb1688 100644
--- a/testsuites/validation/tr-tq-timeout-priority-inherit.c
+++ b/testsuites/validation/tr-tq-timeout-priority-inherit.c
@@ -93,7 +93,7 @@ typedef struct {
   /**
    * @brief This member contains the call within ISR request.
    */
-  CallWithinISRRequest request;;
+  CallWithinISRRequest request;
 
   /**
    * @brief This member specifies the scheduler of the thread.
diff --git a/testsuites/validation/tr-tq-timeout.c b/testsuites/validation/tr-tq-timeout.c
index b2f1436411..9bbd553dce 100644
--- a/testsuites/validation/tr-tq-timeout.c
+++ b/testsuites/validation/tr-tq-timeout.c
@@ -81,7 +81,7 @@ typedef struct {
   /**
    * @brief This member contains the call within ISR request.
    */
-  CallWithinISRRequest request;;
+  CallWithinISRRequest request;
 
   /**
    * @brief This member contains a copy of the corresponding



More information about the vc mailing list