Searched refs:pxResult (Results 1 – 1 of 1) sorted by relevance
/hal_espressif-3.4.0/components/freertos/include/freertos/ |
D | croutine.h | 424 #define crQUEUE_SEND( xHandle, pxQueue, pvItemToQueue, xTicksToWait, pxResult ) \ argument 426 *( pxResult ) = xQueueCRSend( ( pxQueue ), ( pvItemToQueue ), ( xTicksToWait ) ); \ 427 if( *( pxResult ) == errQUEUE_BLOCKED ) \ 430 *pxResult = xQueueCRSend( ( pxQueue ), ( pvItemToQueue ), 0 ); \ 432 if( *pxResult == errQUEUE_YIELD ) \ 435 *pxResult = pdPASS; \ 522 #define crQUEUE_RECEIVE( xHandle, pxQueue, pvBuffer, xTicksToWait, pxResult ) \ argument 524 *( pxResult ) = xQueueCRReceive( ( pxQueue ), ( pvBuffer ), ( xTicksToWait ) ); \ 525 if( *( pxResult ) == errQUEUE_BLOCKED ) \ 528 *( pxResult ) = xQueueCRReceive( ( pxQueue ), ( pvBuffer ), 0 ); \ [all …]
|