Searched refs:cRxLock (Results 1 – 2 of 2) sorted by relevance
121 …volatile int8_t cRxLock; /**< Stores the number of items received from the queue (r… member261 if( ( pxQueue )->cRxLock == queueUNLOCKED ) \263 ( pxQueue )->cRxLock = queueLOCKED_UNMODIFIED; \292 #define prvIncrementQueueRxLock( pxQueue, cRxLock ) \ argument295 if( ( UBaseType_t ) ( cRxLock ) < uxNumberOfTasks ) \297 configASSERT( ( cRxLock ) != queueINT8_MAX ); \298 ( pxQueue )->cRxLock = ( int8_t ) ( ( cRxLock ) + ( int8_t ) 1 ); \324 pxQueue->cRxLock = queueUNLOCKED; in xQueueGenericReset()2074 const int8_t cRxLock = pxQueue->cRxLock; in xQueueReceiveFromISR() local2085 if( cRxLock == queueUNLOCKED ) in xQueueReceiveFromISR()[all …]
407 + Add a cap to the cRxLock and cTxLock members of the queue data structure.411 cRxLock and cTxLock to the number of tasks in the system because we cannot