Home |
RTKernel-32 Programming Manual Function RTKNextCond |
Function RTKNextCondFunction RTKNextCond enquires the next message of a mailbox under the condition that at least one message is available. But unlike RTKGetCond, the message is not removed from the mailbox. RTKNextCond never leads to a task switch. RTKBool RTKNextCond(RTKMailbox Box, void * Data); ParametersBoxThe mailbox from which to enquire the message. DataPointer to the variable to store the message in. return valueTRUE if at least one message is available in the mailbox and *Data contains a copy of the message; otherwise, there was no message available.
|