|
|
@ -497,7 +497,7 @@ xQueueHandle xReturn = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
traceTAKE_MUTEX_RECURSIVE( pxMutex );
|
|
|
|
traceTAKE_MUTEX_RECURSIVE( pxMutex );
|
|
|
|
|
|
|
|
|
|
|
|
if( pxMutex->pxMutexHolder == ( void * ) xTaskGetCurrentTaskHandle() ) /*lint !e961 Cast is not redundant as xTaskHandle is a typedef. */
|
|
|
|
if( pxMutex->pxMutexHolder == ( void * ) xTaskGetCurrentTaskHandle() ) /*lint !e961 Cast is not redundant as xTaskHandle is a typedef. */
|
|
|
|
{
|
|
|
|
{
|
|
|
|
( pxMutex->u.uxRecursiveCallCount )++;
|
|
|
|
( pxMutex->u.uxRecursiveCallCount )++;
|
|
|
|
xReturn = pdPASS;
|
|
|
|
xReturn = pdPASS;
|
|
|
@ -1329,6 +1329,22 @@ unsigned portBASE_TYPE uxReturn;
|
|
|
|
} /*lint !e818 Pointer cannot be declared const as xQueue is a typedef not pointer. */
|
|
|
|
} /*lint !e818 Pointer cannot be declared const as xQueue is a typedef not pointer. */
|
|
|
|
/*-----------------------------------------------------------*/
|
|
|
|
/*-----------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
unsigned portBASE_TYPE uxQueueSpacesAvailable( const xQueueHandle xQueue )
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
unsigned portBASE_TYPE uxReturn;
|
|
|
|
|
|
|
|
xQUEUE *pxQueue;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pxQueue = ( xQUEUE * ) xQueue;
|
|
|
|
|
|
|
|
configASSERT( pxQueue );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
taskENTER_CRITICAL();
|
|
|
|
|
|
|
|
uxReturn = pxQueue->uxLength - pxQueue->uxMessagesWaiting;
|
|
|
|
|
|
|
|
taskEXIT_CRITICAL();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return uxReturn;
|
|
|
|
|
|
|
|
} /*lint !e818 Pointer cannot be declared const as xQueue is a typedef not pointer. */
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
|
|
unsigned portBASE_TYPE uxQueueMessagesWaitingFromISR( const xQueueHandle xQueue )
|
|
|
|
unsigned portBASE_TYPE uxQueueMessagesWaitingFromISR( const xQueueHandle xQueue )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
unsigned portBASE_TYPE uxReturn;
|
|
|
|
unsigned portBASE_TYPE uxReturn;
|
|
|
|