Home
last modified time | relevance | path

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

/Kernel-v10.6.2/
HDqueue.c118 …volatile int8_t cRxLock; /**< Stores the number of items received from the queue (r… member
254 if( ( pxQueue )->cRxLock == queueUNLOCKED ) \
256 ( pxQueue )->cRxLock = queueLOCKED_UNMODIFIED; \
285 #define prvIncrementQueueRxLock( pxQueue, cRxLock ) \ argument
288 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() local
1976 if( cRxLock == queueUNLOCKED ) in xQueueReceiveFromISR()
[all …]
HDHistory.txt238 + 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