Home
last modified time | relevance | path

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

/device/soc/esp/esp32/components/osal/
Dqueue.c115 …volatile int8_t cTxLock; /*< Stores the number of items transmitted to the queue (added to the qu… member
201 if( ( pxQueue )->cTxLock == queueUNLOCKED ) \
203 ( pxQueue )->cTxLock = queueLOCKED_UNMODIFIED; \
338 pxQueue->cTxLock = queueUNLOCKED; in xQueueGenericReset()
912 const int8_t cTxLock = pxQueue->cTxLock; in xQueueGenericSendFromISR() local
925 if( cTxLock == queueUNLOCKED ) in xQueueGenericSendFromISR()
943 pxQueue->cTxLock = ( int8_t ) ( cTxLock + 1 ); in xQueueGenericSendFromISR()
1012 const int8_t cTxLock = pxQueue->cTxLock; in xQueueGiveFromISR() local
1026 if( cTxLock == queueUNLOCKED ) in xQueueGiveFromISR()
1044 pxQueue->cTxLock = ( int8_t ) ( cTxLock + 1 ); in xQueueGiveFromISR()
[all …]