Searched refs:cRxLock (Results 1 – 2 of 2) sorted by relevance
118 …volatile int8_t cRxLock; /**< Stores the number of items received from the queue (r… member254 if( ( pxQueue )->cRxLock == queueUNLOCKED ) \256 ( pxQueue )->cRxLock = queueLOCKED_UNMODIFIED; \285 #define prvIncrementQueueRxLock( pxQueue, cRxLock ) \ argument288 if( ( UBaseType_t ) ( cRxLock ) < uxNumberOfTasks ) \290 configASSERT( ( cRxLock ) != queueINT8_MAX ); \291 ( pxQueue )->cRxLock = ( int8_t ) ( ( cRxLock ) + ( int8_t ) 1 ); \315 pxQueue->cRxLock = queueUNLOCKED; in xQueueGenericReset()1965 const int8_t cRxLock = pxQueue->cRxLock; in xQueueReceiveFromISR() local1976 if( cRxLock == queueUNLOCKED ) in xQueueReceiveFromISR()[all …]
238 + Add a cap to the cRxLock and cTxLock members of the queue data structure.242 cRxLock and cTxLock to the number of tasks in the system because we cannot