Release 6.1.9

This commit is contained in:
Yuxin Zhou
2021-10-14 00:51:26 +00:00
parent 215df45d4b
commit 1af8404c54
1812 changed files with 60698 additions and 249862 deletions

View File

@@ -82,7 +82,7 @@
/* resulting in version 6.1 */
/* */
/**************************************************************************/
UINT _txe_timer_create(TX_TIMER *timer_ptr, CHAR *name_ptr,
UINT _txe_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, UINT timer_control_block_size)
{
@@ -107,7 +107,7 @@ TX_THREAD *thread_ptr;
/* Timer pointer is invalid, return appropriate error code. */
status = TX_TIMER_ERROR;
}
/* Now check for invalid control block size. */
else if (timer_control_block_size != (sizeof(TX_TIMER)))
{
@@ -135,12 +135,12 @@ TX_THREAD *thread_ptr;
/* Determine if this timer matches the current timer in the list. */
if (timer_ptr == next_timer)
{
break;
}
else
{
/* Move to next timer. */
next_timer = next_timer -> tx_timer_created_next;
}
@@ -151,7 +151,7 @@ TX_THREAD *thread_ptr;
/* Decrement the preempt disable flag. */
_tx_thread_preempt_disable--;
/* Restore interrupts. */
TX_RESTORE
@@ -179,11 +179,11 @@ TX_THREAD *thread_ptr;
/* Check for an illegal activation. */
if (auto_activate != TX_AUTO_ACTIVATE)
{
/* And activation is not the other value. */
if (auto_activate != TX_NO_ACTIVATE)
{
/* Invalid activation selected, return appropriate error code. */
status = TX_ACTIVATE_ERROR;
}
@@ -212,11 +212,11 @@ TX_THREAD *thread_ptr;
/* Check for interrupt call. */
if (TX_THREAD_GET_SYSTEM_STATE() != ((ULONG) 0))
{
/* Now, make sure the call is from an interrupt and not initialization. */
if (TX_THREAD_GET_SYSTEM_STATE() < TX_INITIALIZE_IN_PROGRESS)
{
/* Invalid caller of this function, return appropriate error code. */
status = TX_CALLER_ERROR;
}