summaryrefslogtreecommitdiff
path: root/test/tx/regression/threadx_event_flag_thread_terminate_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/tx/regression/threadx_event_flag_thread_terminate_test.c')
-rw-r--r--test/tx/regression/threadx_event_flag_thread_terminate_test.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/tx/regression/threadx_event_flag_thread_terminate_test.c b/test/tx/regression/threadx_event_flag_thread_terminate_test.c
index eecb76e6..166711f5 100644
--- a/test/tx/regression/threadx_event_flag_thread_terminate_test.c
+++ b/test/tx/regression/threadx_event_flag_thread_terminate_test.c
@@ -52,8 +52,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,
17, 17, 100, TX_AUTO_START);
pointer = pointer + TEST_STACK_SIZE_PRINTF;
@@ -65,8 +65,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,
16, 16, 100, TX_AUTO_START);
pointer = pointer + TEST_STACK_SIZE_PRINTF;
@@ -78,8 +78,8 @@ CHAR *pointer;
test_control_return(1);
}
- status = tx_thread_create(&thread_2, "thread 2", thread_2_entry, 1,
- pointer, TEST_STACK_SIZE_PRINTF,
+ status = tx_thread_create(&thread_2, "thread 2", thread_2_entry, 1,
+ pointer, TEST_STACK_SIZE_PRINTF,
16, 16, 100, TX_AUTO_START);
pointer = pointer + TEST_STACK_SIZE_PRINTF;
@@ -101,7 +101,7 @@ CHAR *pointer;
printf("Running Event Flag Thread Terminate Test............................ ERROR #4\n");
test_control_return(1);
}
-
+
/* Register the event set notify function. */
status = tx_event_flags_set_notify(&group_0, event_set_notify);