Searched refs:cTxLock (Results 1 – 2 of 2) sorted by relevance
122 …volatile int8_t cTxLock; /**< Stores the number of items transmitted to the queue (… member265 if( ( pxQueue )->cTxLock == queueUNLOCKED ) \267 ( pxQueue )->cTxLock = queueLOCKED_UNMODIFIED; \277 #define prvIncrementQueueTxLock( pxQueue, cTxLock ) \ argument280 if( ( UBaseType_t ) ( cTxLock ) < uxNumberOfTasks ) \282 configASSERT( ( cTxLock ) != queueINT8_MAX ); \283 ( pxQueue )->cTxLock = ( int8_t ) ( ( cTxLock ) + ( int8_t ) 1 ); \325 pxQueue->cTxLock = queueUNLOCKED; in xQueueGenericReset()1197 const int8_t cTxLock = pxQueue->cTxLock; in xQueueGenericSendFromISR() local1211 if( cTxLock == queueUNLOCKED ) in xQueueGenericSendFromISR()[all …]
330 + Add a cap to the cRxLock and cTxLock members of the queue data structure.334 cRxLock and cTxLock to the number of tasks in the system because we cannot