Home |
RTKernel-32 Programming Manual Function RTKPutCond |
Function RTKPutCondRTKPutCond stores a message in a mailbox under the condition that space is available in the mailbox. RTKPutCond never leads to a blocking task switch. If the mailbox is full, this is indicated by the return value and no data is transferred. RTKBool RTKPutCond(RTKMailbox Box, const void * Data); ParametersBoxThe mailbox to store the message in. DataPointer to the variable to store the message in. return valueTRUE if the message has been successfully stored or FALSE if no space is available.
|