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

@@ -80,7 +80,7 @@
/* */
/**************************************************************************/
UINT _txe_mutex_info_get(TX_MUTEX *mutex_ptr, CHAR **name, ULONG *count, TX_THREAD **owner,
TX_THREAD **first_suspended, ULONG *suspended_count,
TX_THREAD **first_suspended, ULONG *suspended_count,
TX_MUTEX **next_mutex)
{
@@ -94,7 +94,7 @@ UINT status;
/* Mutex pointer is invalid, return appropriate error code. */
status = TX_MUTEX_ERROR;
}
/* Now check for invalid mutex ID. */
else if (mutex_ptr -> tx_mutex_id != TX_MUTEX_ID)
{
@@ -106,7 +106,7 @@ UINT status;
{
/* Otherwise, call the actual mutex information get service. */
status = _tx_mutex_info_get(mutex_ptr, name, count, owner, first_suspended,
status = _tx_mutex_info_get(mutex_ptr, name, count, owner, first_suspended,
suspended_count, next_mutex);
}