Searched refs:pxResult (Results 1 – 1 of 1) sorted by relevance
/Kernel-v11.1.0/include/ |
D | croutine.h | 404 #define crQUEUE_SEND( xHandle, pxQueue, pvItemToQueue, xTicksToWait, pxResult ) \ argument 406 *( pxResult ) = xQueueCRSend( ( pxQueue ), ( pvItemToQueue ), ( xTicksToWait ) ); \ 407 if( *( pxResult ) == errQUEUE_BLOCKED ) \ 410 *pxResult = xQueueCRSend( ( pxQueue ), ( pvItemToQueue ), 0 ); \ 412 if( *pxResult == errQUEUE_YIELD ) \ 415 *pxResult = pdPASS; \ 498 #define crQUEUE_RECEIVE( xHandle, pxQueue, pvBuffer, xTicksToWait, pxResult ) \ argument 500 *( pxResult ) = xQueueCRReceive( ( pxQueue ), ( pvBuffer ), ( xTicksToWait ) ); \ 501 if( *( pxResult ) == errQUEUE_BLOCKED ) \ 504 *( pxResult ) = xQueueCRReceive( ( pxQueue ), ( pvBuffer ), 0 ); \ [all …]
|