Messaging API for inter process communication. More...
Messaging API for inter process communication.
IPC messages consist of a sender PID, a type, and some content. The sender PID will be set by the IPC internally and is not required to be set by the user. The type helps the receiver to multiplex different message types and should be set to a system-wide unique value. The content can either be provided as a 32-bit integer or a pointer.
Messages can be sent and received blocking and non-blocking. Both can be used combined: A message send while blocking the sender thread can be received with the non-blocking variant and vice-versa.
For the blocking variant use msg_send() or msg_receive() respectively.
Additionally, one can use msg_send_receive() to simultaneously block the sending thread and expect a response from the receiving thread. In this case, the receiving thread must use msg_reply() to reply to the message of the sender thread.
For the non-blocking variant use msg_try_send() or msg_try_receive() respectively. If a message is sent in synchronous mode or the message queue (see below) of the receiving thread is full messages sent this way will be dropped.
You can use the example on asynchronous IPC below - but without the queue - to get an impression of how to use non-blocking IPC.
RIOT's IPC supports both synchronous and asynchronous IPC.
Synchronous IPC is the default mode i.e. is active when the receiving thread has no message queue initialized. Messages that can't be delivered when sending non-blocking (because the receiver already received a message) or which are sent when the receiver is not receive-blocked will be dropped.
To use asynchronous IPC one needs to initialize a message queue using msg_init_queue() (note that it must be of a size equal to a power of two). Messages sent to a thread with a message queue that isn't full are never dropped and the sending never blocks, even when using msg_send(). If the queue is full and the sending thread has a higher priority than the receiving thread the send-behavior is equivalent to synchronous mode.
Timing out the reception of a message or sending messages at a certain time is out of scope for the basic IPC provided by the kernel. See the xtimer module on information for these functionalities.
Files | |
file | msg.h |
Messaging API for inter process communication. | |
file | msg_bus.h |
Messaging Bus API for inter process message broadcast. | |
Data Structures | |
struct | msg_t |
Describes a message object which can be sent between threads. More... | |
Macros | |
#define | KERNEL_PID_ISR (KERNEL_PID_LAST + 1) |
Value of msg_t::sender_pid if the sender was an interrupt service routine. | |
Functions | |
int | msg_send (msg_t *m, kernel_pid_t target_pid) |
Send a message (blocking). More... | |
int | msg_try_send (msg_t *m, kernel_pid_t target_pid) |
Send a message (non-blocking). More... | |
int | msg_send_to_self (msg_t *m) |
Send a message to the current thread. More... | |
int | msg_send_int (msg_t *m, kernel_pid_t target_pid) |
Send message from interrupt. More... | |
static int | msg_sent_by_int (const msg_t *m) |
Test if the message was sent inside an ISR. More... | |
int | msg_receive (msg_t *m) |
Receive a message. More... | |
int | msg_try_receive (msg_t *m) |
Try to receive a message. More... | |
int | msg_send_receive (msg_t *m, msg_t *reply, kernel_pid_t target_pid) |
Send a message, block until reply received. More... | |
int | msg_reply (msg_t *m, msg_t *reply) |
Replies to a message. More... | |
int | msg_reply_int (msg_t *m, msg_t *reply) |
Replies to a message from interrupt. More... | |
int | msg_avail (void) |
Check how many messages are available in the message queue. More... | |
void | msg_init_queue (msg_t *array, int num) |
Initialize the current thread's message queue. More... | |
void | msg_queue_print (void) |
Prints the message queue of the current thread. | |
int msg_avail | ( | void | ) |
Check how many messages are available in the message queue.
void msg_init_queue | ( | msg_t * | array, |
int | num | ||
) |
int msg_receive | ( | msg_t * | m | ) |
Receive a message.
This function blocks until a message was received.
[out] | m | Pointer to preallocated msg_t structure, must not be NULL. |
Replies to a message.
Sender must have sent the message with msg_send_receive().
[in] | m | message to reply to, must not be NULL. |
[out] | reply | message that target will get as reply, must not be NULL. |
Replies to a message from interrupt.
An ISR can obviously not receive messages, however a thread might delegate replying to a message to an ISR.
[in] | m | message to reply to, must not be NULL. |
[out] | reply | message that target will get as reply, must not be NULL. |
int msg_send | ( | msg_t * | m, |
kernel_pid_t | target_pid | ||
) |
Send a message (blocking).
This function sends a message to another thread. The msg_t
structure has to be allocated (e.g. on the stack) before calling the function and can be freed afterwards. If called from an interrupt, this function will never block.
[in] | m | Pointer to preallocated msg_t structure, must not be NULL. |
[in] | target_pid | PID of target thread |
int msg_send_int | ( | msg_t * | m, |
kernel_pid_t | target_pid | ||
) |
Send message from interrupt.
Will be automatically chosen instead of msg_send() if called from an interrupt/ISR.
The value of m->sender_pid
is set to KERNEL_PID_ISR.
[in] | m | Pointer to preallocated msg_t structure, must not be NULL. |
[in] | target_pid | PID of target thread. |
block == 0
int msg_send_receive | ( | msg_t * | m, |
msg_t * | reply, | ||
kernel_pid_t | target_pid | ||
) |
Send a message, block until reply received.
This function sends a message to target_pid and then blocks until target has sent a reply which is then stored in reply.
target_pid
is not the PID of the current thread.[in] | m | Pointer to preallocated msg_t structure with the message to send, must not be NULL. |
[out] | reply | Pointer to preallocated msg. Reply will be written here, must not be NULL. Can be identical to m . |
[in] | target_pid | The PID of the target process |
int msg_send_to_self | ( | msg_t * | m | ) |
Send a message to the current thread.
Will work only if the thread has a message queue.
Will be automatically chosen instead of msg_send
if target_pid
== thread_pid
. This function never blocks.
m | pointer to message structure |
|
inlinestatic |
Test if the message was sent inside an ISR.
[in] | m | The message in question. |
== 0
if not sent by an ISR != 0
if sent by an ISR int msg_try_receive | ( | msg_t * | m | ) |
Try to receive a message.
This function does not block if no message can be received.
[out] | m | Pointer to preallocated msg_t structure, must not be NULL. |
int msg_try_send | ( | msg_t * | m, |
kernel_pid_t | target_pid | ||
) |
Send a message (non-blocking).
This function sends a message to another thread. The msg_t
structure has to be allocated (e.g. on the stack) before calling the function and can be freed afterwards. This function will never block.
[in] | m | Pointer to preallocated msg_t structure, must not be NULL. |
[in] | target_pid | PID of target thread |