summaryrefslogtreecommitdiff
path: root/common/src/tx_timer_create.c
diff options
context:
space:
mode:
authorYuxin Zhou <[email protected]>2021-10-14 00:51:26 +0000
committerYuxin Zhou <[email protected]>2021-10-14 00:51:26 +0000
commit1af8404c54f9c8d3caa2ac3523c2a5f014aecb1c (patch)
tree93e4f4d64ec8c21c01b77f19b8e7326e85227e3d /common/src/tx_timer_create.c
parent215df45d4b59d4ce8606a88f566d1d426e64a84c (diff)
Release 6.1.9
Diffstat (limited to 'common/src/tx_timer_create.c')
-rw-r--r--common/src/tx_timer_create.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/src/tx_timer_create.c b/common/src/tx_timer_create.c
index b4eb949d..9326d69a 100644
--- a/common/src/tx_timer_create.c
+++ b/common/src/tx_timer_create.c
@@ -75,7 +75,7 @@
/* resulting in version 6.1 */
/* */
/**************************************************************************/
-UINT _tx_timer_create(TX_TIMER *timer_ptr, CHAR *name_ptr,
+UINT _tx_timer_create(TX_TIMER *timer_ptr, CHAR *name_ptr,
VOID (*expiration_function)(ULONG id), ULONG expiration_input,
ULONG initial_ticks, ULONG reschedule_ticks, UINT auto_activate)
{
@@ -95,7 +95,7 @@ TX_TIMER *previous_timer;
timer_ptr -> tx_timer_internal.tx_timer_internal_re_initialize_ticks = reschedule_ticks;
timer_ptr -> tx_timer_internal.tx_timer_internal_timeout_function = expiration_function;
timer_ptr -> tx_timer_internal.tx_timer_internal_timeout_param = expiration_input;
-
+
/* Disable interrupts to put the timer on the created list. */
TX_DISABLE
@@ -130,7 +130,7 @@ TX_TIMER *previous_timer;
/* Increment the number of created timers. */
_tx_timer_created_count++;
-
+
/* Optional timer create extended processing. */
TX_TIMER_CREATE_EXTENSION(timer_ptr)