Searched refs:pxResult (Results 1 – 1 of 1) sorted by relevance
/hal_espressif-2.7.6/components/freertos/include/freertos/ |
D | croutine.h | 380 #define crQUEUE_SEND( xHandle, pxQueue, pvItemToQueue, xTicksToWait, pxResult ) \ argument 382 *( pxResult ) = xQueueCRSend( ( pxQueue) , ( pvItemToQueue) , ( xTicksToWait ) ); \ 383 if( *( pxResult ) == errQUEUE_BLOCKED ) \ 386 *pxResult = xQueueCRSend( ( pxQueue ), ( pvItemToQueue ), 0 ); \ 388 if( *pxResult == errQUEUE_YIELD ) \ 391 *pxResult = pdPASS; \ 472 #define crQUEUE_RECEIVE( xHandle, pxQueue, pvBuffer, xTicksToWait, pxResult ) \ argument 474 *( pxResult ) = xQueueCRReceive( ( pxQueue) , ( pvBuffer ), ( xTicksToWait ) ); \ 475 if( *( pxResult ) == errQUEUE_BLOCKED ) \ 478 *( pxResult ) = xQueueCRReceive( ( pxQueue) , ( pvBuffer ), 0 ); \ [all …]
|