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

@@ -78,8 +78,8 @@
/* resulting in version 6.1 */
/* */
/**************************************************************************/
UINT _txe_semaphore_info_get(TX_SEMAPHORE *semaphore_ptr, CHAR **name, ULONG *current_value,
TX_THREAD **first_suspended, ULONG *suspended_count,
UINT _txe_semaphore_info_get(TX_SEMAPHORE *semaphore_ptr, CHAR **name, ULONG *current_value,
TX_THREAD **first_suspended, ULONG *suspended_count,
TX_SEMAPHORE **next_semaphore)
{
@@ -93,7 +93,7 @@ UINT status;
/* Semaphore pointer is invalid, return appropriate error code. */
status = TX_SEMAPHORE_ERROR;
}
/* Now check for a valid semaphore ID. */
else if (semaphore_ptr -> tx_semaphore_id != TX_SEMAPHORE_ID)
{
@@ -105,7 +105,7 @@ UINT status;
{
/* Otherwise, call the actual semaphore information get service. */
status = _tx_semaphore_info_get(semaphore_ptr, name, current_value, first_suspended,
status = _tx_semaphore_info_get(semaphore_ptr, name, current_value, first_suspended,
suspended_count, next_semaphore);
}