summaryrefslogtreecommitdiff
path: root/utility/benchmarks/thread_metric/tm_preemptive_scheduling_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'utility/benchmarks/thread_metric/tm_preemptive_scheduling_test.c')
-rw-r--r--utility/benchmarks/thread_metric/tm_preemptive_scheduling_test.c55
1 files changed, 25 insertions, 30 deletions
diff --git a/utility/benchmarks/thread_metric/tm_preemptive_scheduling_test.c b/utility/benchmarks/thread_metric/tm_preemptive_scheduling_test.c
index 95ee4be8..ef3222f3 100644
--- a/utility/benchmarks/thread_metric/tm_preemptive_scheduling_test.c
+++ b/utility/benchmarks/thread_metric/tm_preemptive_scheduling_test.c
@@ -1,16 +1,17 @@
/***************************************************************************
- * Copyright (c) 2024 Microsoft Corporation
- *
+ * Copyright (c) 2024 Microsoft Corporation
+ * Copyright (c) 2026-present Eclipse ThreadX contributors
+ *
* This program and the accompanying materials are made available under the
* terms of the MIT License which is available at
* https://opensource.org/licenses/MIT.
- *
+ *
* SPDX-License-Identifier: MIT
**************************************************************************/
/**************************************************************************/
/**************************************************************************/
-/** */
+/** */
/** Thread-Metric Component */
/** */
/** Preemptive Scheduling Test */
@@ -18,27 +19,21 @@
/**************************************************************************/
/**************************************************************************/
-/**************************************************************************/
-/* */
-/* FUNCTION RELEASE */
-/* */
-/* tm_preemptive_scheduling_test PORTABLE C */
-/* 6.1.7 */
-/* AUTHOR */
-/* */
-/* William E. Lamie, Microsoft Corporation */
-/* */
-/* DESCRIPTION */
-/* */
+/**************************************************************************/
+/* */
+/* FUNCTION RELEASE */
+/* */
+/* tm_preemptive_scheduling_test PORTABLE C */
+/* 6.1.7 */
+/* AUTHOR */
+/* */
+/* William E. Lamie, Microsoft Corporation */
+/* */
+/* DESCRIPTION */
+/* */
/* This file defines the preemptive scheduling test. */
-/* */
-/* RELEASE HISTORY */
-/* */
-/* DATE NAME DESCRIPTION */
-/* */
-/* 10-15-2021 William E. Lamie Initial Version 6.1.7 */
-/* */
-/**************************************************************************/
+/* */
+/**************************************************************************/
#include "tm_api.h"
@@ -103,7 +98,7 @@ void tm_preemptive_scheduling_initialize(void)
/* Resume just thread 0. */
tm_thread_resume(0);
- /* Create the reporting thread. It will preempt the other
+ /* Create the reporting thread. It will preempt the other
threads and print out the test results. */
tm_thread_create(5, 2, tm_preemptive_thread_report);
tm_thread_resume(5);
@@ -245,15 +240,15 @@ unsigned long average;
average = total/5;
/* See if there are any errors. */
- if ((tm_preemptive_thread_0_counter < (average - 1)) ||
+ if ((tm_preemptive_thread_0_counter < (average - 1)) ||
(tm_preemptive_thread_0_counter > (average + 1)) ||
- (tm_preemptive_thread_1_counter < (average - 1)) ||
+ (tm_preemptive_thread_1_counter < (average - 1)) ||
(tm_preemptive_thread_1_counter > (average + 1)) ||
- (tm_preemptive_thread_2_counter < (average - 1)) ||
+ (tm_preemptive_thread_2_counter < (average - 1)) ||
(tm_preemptive_thread_2_counter > (average + 1)) ||
- (tm_preemptive_thread_3_counter < (average - 1)) ||
+ (tm_preemptive_thread_3_counter < (average - 1)) ||
(tm_preemptive_thread_3_counter > (average + 1)) ||
- (tm_preemptive_thread_4_counter < (average - 1)) ||
+ (tm_preemptive_thread_4_counter < (average - 1)) ||
(tm_preemptive_thread_4_counter > (average + 1)))
{