testsuites: Remove stray ';'

This commit is contained in:
Sebastian Huber
2023-07-21 09:30:07 +02:00
parent 723c634d61
commit 610b54d83a
42 changed files with 87 additions and 87 deletions

View File

@@ -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,

View File

@@ -79,7 +79,7 @@ static int call_at_level(
bool dirty
)
{
int prevent_optimization;;
int prevent_optimization;
prevent_optimization = start + fl;

View File

@@ -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``

View File

@@ -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.

View File

@@ -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.

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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.

View File

@@ -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.

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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;

View File

@@ -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.

View File

@@ -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.

View File

@@ -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.

View File

@@ -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;

View File

@@ -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.

View File

@@ -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.

View File

@@ -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.

View File

@@ -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``

View File

@@ -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.

View File

@@ -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

View File

@@ -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``

View File

@@ -90,7 +90,7 @@ typedef struct {
/**
* @brief This member contains a counter.
*/
uint32_t counter;;
uint32_t counter;
} ScoreThreadValIdleBodyNoReturn_Context;
static ScoreThreadValIdleBodyNoReturn_Context

View File

@@ -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

View File

@@ -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;

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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.

View File

@@ -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