Home |
RTKernel-32 Programming Manual Function RTKSendCond |
Function RTKSendCondRTKSendCond sends data to another task under the condition that the receiving task is immediately ready to accept data; otherwise, the return value indicates failure and no data is transferred. RTKSendCond never leads to a blocking task switch. RTKBool RTKSendCond(RTKTaskHandle Receiver, const void * Data); ParametersReceiverThe handle of the receiving task. DataPointer to the data to send. return valueTRUE if the data transfer has been successfully completed or FALSE if the receiving task was not ready to accept data.
|