Home |
RTKernel-32 Programming Manual Function RTKPut |
Function RTKPutRTKPut stores a message in a mailbox. void RTKPut(RTKMailbox Box, const void * Data); ParametersBoxThe mailbox to store the message in. DataPointer to the data to store in the mailbox. If the mailbox is full, the calling task is blocked until another task (or an interrupt handler) retrieves a message. If, however, the mailbox is empty and another task is waiting for a message at the mailbox, the waiting task is made ready.
|