Home |
RTKernel-32 Programming Manual Function RTKGetCond |
Function RTKGetCondRTKGetCond retrieves a message from a mailbox under the condition that one is available immediately. RTKGetCond never leads to a blocking task switch. If the mailbox is empty, this is indicated by the return value and no data is transferred. RTKBool RTKGetCond(RTKMailbox Box, void * Data); ParametersBoxThe mailbox from which to retrieve the message. DataPointer to the variable to store the message in. return valueTRUE if the message has been successfully retrieved or FALSE if no message is available.
|