PutMsg(port, message)
void PutMsg(struct MsgPort *, struct Message *);
This function attaches a message to the end of a given message port. It provides a fast, non-copying message sending mechanism.
Messages can be attached to only one port at a time. The message body can be of any size or form. Because messages are not copied, cooperating tasks share the same message memory. The sender task must not recycle the message until it has been replied by the receiver. Of course this depends on the message handling conventions setup by the involved tasks. If the Message->mn_ReplyPort field is non-zero, when the message is replied by the receiver through
ReplyMsg(), it will be sent to that port.
Any one of the following actions can be set to occur when a message is put:
-
no special action
-
signal a given task (specified by MP_SIGTASK)
-
cause a software interrupt (specified by MP_SIGTASK)
The action is selected depending on the value found in the MP_FLAGS member of the destination port.
This function is safe to call from interrupts.