#include <sys/msg.h> int msgsnd(int msqid, void *msgp, size_t msgsz, int msgflg);
The msgsnd() function is used to send a message to the message queue specified by the msqid parameter.
The *msgp parameter points to a user-defined buffer that must contain the following:
The following structure is an example of what the user-defined buffer might look like for a message that has 5 bytes of data.
struct mymsg { long int mtype; /* message type */ char mtext[5]; /* message text */ }
The value of mtype must be greater than zero. When messages are received with msgrcv(), the message type can be used to select the messages. The message data can be any length up to the system limit.
If the message queue is full, the msgflg parameter specifies the action
to be taken. The actions are as follows:
The system maintains status information about a message queue which can be
retrieved with the msgctl() function. When a message
is successfully sent to the message queue, the system sets the members of the
msqid_ds structure as follows:
Authorization Required for msgsnd()
Object Referred to | Authority Required | errno |
---|---|---|
Message queue on which message is placed | Write | EACCES |
0 | msgsnd() was successful. |
-1 | msgsnd() was not successful. The errno variable is set to indicate the error. |
If msgsnd() is not successful, errno usually indicates one of the following errors. Under some conditions, errno could indicate an error other than those listed here.
Permission denied.
An attempt was made to access an object in a way forbidden by its object access permissions.
The thread does not have access to the specified file, directory, component, or path.
The calling thread does not have write permission to the message queue.
Operation would have caused the process to be suspended.
The message cannot be sent for one of the reasons cited above and the IPC_NOWAIT flag is set in the msgflg parameter.
A damaged object was encountered.
A referenced object is damaged. The object cannot be used.
The message queue has been damaged by a previous message queue operation.
The address used for an argument is not correct.
In attempting to use an argument in a call, the system detected an address that is not valid.
While attempting to access a parameter passed to this function, the system detected an address that is not valid.
ID has been removed.
The message queue identifier msqid was removed from the system.
Interrupted function call.
The function msgsnd() was interrupted by a signal.
The value specified for the argument is not correct.
A function was passed incorrect argument values, or an operation was attempted on an object and the operation specified is not supported for that type of object.
An argument value is not valid, out of range, or NULL.
One of the following has occurred:
Unknown system state.
The operation failed because of an unknown system state. See any messages in the job log and correct any errors that are indicated, then retry the operation.
None.
The parameter msgsz should include any bytes inserted by the compiler for padding or alignment purposes. These bytes are part of the message data and affect the total number of bytes in the message queue.
The following example shows pad data and how it affects the size of a message when using datamodel *P128:
struct mymsg { long int mtype; /* 12 bytes padding inserted after */ char *pointer; /* the mtype field by the compiler.*/ char c; /* 15 bytes padding inserted after */ char *pointer2; /* the c field by the compiler. */ } msg; /* After the mtype field, there are*/ /* 33 bytes of user data, but 60 */ /* bytes of data including padding.*/ msgsz = sizeof(msg) - sizeof(long int); /* 60 bytes. */
See Code disclaimer information for information pertaining to code examples.
The following example sends a message to a message queue:
#include <sys/msg.h> main() { int msqid = 2; int rc; size_t msgsz; struct mymsg { long int mtype; char mtext[256]; }; msgsz = sizeof(struct mymsg) - sizeof(long int); mymsg.mtype = 1; rc = msgsnd(msqid, &mymsg, msgsz, IPC_NOWAIT); }
Top | UNIX-Type APIs | APIs by category |