summaryrefslogtreecommitdiff
path: root/test/tx/regression/threadx_semaphore_preemption_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/tx/regression/threadx_semaphore_preemption_test.c')
-rw-r--r--test/tx/regression/threadx_semaphore_preemption_test.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/tx/regression/threadx_semaphore_preemption_test.c b/test/tx/regression/threadx_semaphore_preemption_test.c
index 347042bc..f14193a2 100644
--- a/test/tx/regression/threadx_semaphore_preemption_test.c
+++ b/test/tx/regression/threadx_semaphore_preemption_test.c
@@ -51,8 +51,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;
@@ -64,8 +64,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_AUTO_START);
pointer = pointer + TEST_STACK_SIZE_PRINTF;
@@ -90,7 +90,7 @@ CHAR *pointer;
/* Setup the semaphore notify callback. */
status = tx_semaphore_put_notify(&semaphore_0, put_notify);
-
+
#ifndef TX_DISABLE_NOTIFY_CALLBACKS
/* Check for status. */