Searched refs:cTxLock (Results 1 – 2 of 2) sorted by relevance
119 …volatile int8_t cTxLock; /**< Stores the number of items transmitted to the queue (… member258 if( ( pxQueue )->cTxLock == queueUNLOCKED ) \260 ( pxQueue )->cTxLock = queueLOCKED_UNMODIFIED; \270 #define prvIncrementQueueTxLock( pxQueue, cTxLock ) \ argument273 if( ( UBaseType_t ) ( cTxLock ) < uxNumberOfTasks ) \275 configASSERT( ( cTxLock ) != queueINT8_MAX ); \276 ( pxQueue )->cTxLock = ( int8_t ) ( ( cTxLock ) + ( int8_t ) 1 ); \316 pxQueue->cTxLock = queueUNLOCKED; in xQueueGenericReset()1134 const int8_t cTxLock = pxQueue->cTxLock; in xQueueGenericSendFromISR() local1148 if( cTxLock == queueUNLOCKED ) in xQueueGenericSendFromISR()[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