summaryrefslogtreecommitdiff
path: root/test/smp/regression/threadx_mutex_preemption_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/smp/regression/threadx_mutex_preemption_test.c')
-rw-r--r--test/smp/regression/threadx_mutex_preemption_test.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/smp/regression/threadx_mutex_preemption_test.c b/test/smp/regression/threadx_mutex_preemption_test.c
index 238dda03..495ae13c 100644
--- a/test/smp/regression/threadx_mutex_preemption_test.c
+++ b/test/smp/regression/threadx_mutex_preemption_test.c
@@ -43,8 +43,8 @@ CHAR *pointer;
/* Put system definition stuff in here, e.g. thread creates and other assorted
create information. */
- status = tx_thread_create(&thread_0, "thread 0", thread_0_entry, 1,
- pointer, TEST_STACK_SIZE_PRINTF,
+ status = tx_thread_create(&thread_0, "thread 0", thread_0_entry, 1,
+ pointer, TEST_STACK_SIZE_PRINTF,
16, 16, 100, TX_AUTO_START);
pointer = pointer + TEST_STACK_SIZE_PRINTF;
@@ -56,8 +56,8 @@ CHAR *pointer;
test_control_return(1);
}
- status = tx_thread_create(&thread_1, "thread 1", thread_1_entry, 1,
- pointer, TEST_STACK_SIZE_PRINTF,
+ status = tx_thread_create(&thread_1, "thread 1", thread_1_entry, 1,
+ pointer, TEST_STACK_SIZE_PRINTF,
15, 15, 100, TX_DONT_START);
pointer = pointer + TEST_STACK_SIZE_PRINTF;