Home
last modified time | relevance | path

Searched refs:cRxLock (Results 1 – 2 of 2) sorted by relevance

/Kernel-v11.1.0/
Dqueue.c121 …volatile int8_t cRxLock; /**< Stores the number of items received from the queue (r… member
261 if( ( pxQueue )->cRxLock == queueUNLOCKED ) \
263 ( pxQueue )->cRxLock = queueLOCKED_UNMODIFIED; \
292 #define prvIncrementQueueRxLock( pxQueue, cRxLock ) \ argument
295 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() local
2085 if( cRxLock == queueUNLOCKED ) in xQueueReceiveFromISR()
[all …]
DHistory.txt407 + 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