2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
5 Desc: Send a message to a port.
9 #include <aros/debug.h>
10 #include <aros/libcall.h>
11 #include <exec/ports.h>
12 #include <proto/exec.h>
14 #include "exec_intern.h"
15 #include "exec_util.h"
17 /*****************************************************************************
21 AROS_LH2(void, PutMsg
,
24 AROS_LHA(struct MsgPort
*, port
, A0
),
25 AROS_LHA(struct Message
*, message
, A1
),
28 struct ExecBase
*, SysBase
, 61, Exec
)
31 Sends a message to a given message port. Messages are not copied
32 from one task to another but must lie in shared memory instead.
33 Therefore the owner of the message may generally not reuse it before
34 it is returned. But this depends on the two tasks sharing the message.
37 port - Pointer to messageport.
38 message - Pointer to message.
43 It is legal to send a message from within interrupts.
45 Messages may either trigger a signal at the owner of the messageport
46 or raise a software interrupt, depending on port->mp_Flags&PF_ACTION.
57 ******************************************************************************/
60 ASSERT_VALID_PTR(message
);
61 ASSERT_VALID_PTR(port
);
63 /* Set the node type to NT_MESSAGE == sent message. */
64 message
->mn_Node
.ln_Type
=NT_MESSAGE
;
66 InternalPutMsg(port
, message
, SysBase
);
71 void InternalPutMsg(struct MsgPort
*port
, struct Message
*message
, struct ExecBase
*SysBase
)
73 /* Add it to the message list. Messages may be sent from interrupts.
74 Therefore the message list of the message port must be protected with
77 AddTail(&port
->mp_MsgList
,&message
->mn_Node
);
82 ASSERT_VALID_PTR(port
->mp_SigTask
);
84 /* And trigger the action. */
85 switch(port
->mp_Flags
& PF_ACTION
)
89 Signal((struct Task
*)port
->mp_SigTask
,1<<port
->mp_SigBit
);
93 D(bug("PutMsg: PA_SOFTINT, port 0x%p, msg 0x%p, int %s\n", port
, message
, ((struct Interrupt
*)port
->mp_SoftInt
)->is_Node
.ln_Name
));
95 /* Raise a software interrupt */
96 Cause((struct Interrupt
*)port
->mp_SoftInt
);
104 /* Call the function in mp_SigTask. */
105 AROS_UFC2NR(void, port
->mp_SigTask
,
106 AROS_UFCA(struct MsgPort
*, port
, D0
),
107 AROS_UFCA(struct ExecBase
*, SysBase
, A6
));