up | Inhaltsverzeichniss | Kommentar

Manual page for MSGOP(2)

msgop, msgsnd, msgrcv - message operations

SYNOPSIS

#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>

int msgsnd(msqid, msgp, msgsz, msgflg)
int msqid;
struct msgbuf *msgp;
int msgsz, msgflg;

int msgrcv(msqid, msgp, msgsz, msgtyp, msgflg)
int msqid;
struct msgbuf *msgp;
int msgsz;
long msgtyp;
int msgflg;

DESCRIPTION

msgsnd() is used to send a message to the queue associated with the message queue identifier specified by msqid. [WRITE] (see msgctl.2 msgp points to a structure containing the message. This structure is composed of the following members:

long	mtype;	/* message type */
char	mtext[1];	/* message text */

mtype is a positive integer that can be used by the receiving process for message selection (see msgrcv() below). mtext is any text of length msgsz bytes. msgsz can range from 0 to a system-imposed maximum.

msgflg specifies the action to be taken if one or more of the following are true:

These actions are as follows:

Upon successful completion, the following actions are taken with respect to the data structure associated with msqid (see intro.2

msgrcv() reads a message from the queue associated with the message queue identifier specified by msqid and places it in the structure pointed to by msgp. [READ] This structure is composed of the following members:

long	mtype;	/* message type */
char	mtext[1];	/* message text */

mtype is the received message's type as specified by the sending process. mtext is the text of the message. msgsz specifies the size in bytes of mtext. The received message is truncated to msgsz bytes if it is larger than msgsz and (msgflg & MSG_NOERROR) is ``true''. The truncated part of the message is lost and no indication of the truncation is given to the calling process.

msgtyp specifies the type of message requested as follows:

msgflg specifies the action to be taken if a message of the desired type is not on the queue. These are as follows:

Upon successful completion, the following actions are taken with respect to the data structure associated with msqid (see intro.2

RETURN VALUES

msgsnd() returns:

0
on success.
-1
on failure and sets errno to indicate the error.

msgrcv() returns the number of bytes actually placed into mtext on success. On failure, it returns -1 and sets errno to indicate the error.

ERRORS

msgsnd() will fail and no message will be sent if one or more of the following are true:

EACCES
Operation permission is denied to the calling process (see intro.2
EAGAIN
The message cannot be sent for one of the reasons cited above and (msgflg & IPC_NOWAIT) is ``true''.
EFAULT
msgp points to an illegal address.
EIDRM
The message queue referred to by msqid was removed from the system.
EINTR
The call was interrupted by the delivery of a signal.
EINVAL
msqid is not a valid message queue identifier.

mtype is less than 1.

msgsz is less than zero or greater than the system-imposed limit.

msgrcv() will fail and no message will be received if one or more of the following are true:

E2BIG
mtext is greater than msgsz and (msgflg & MSG_NOERROR) is ``false''.
EACCES
Operation permission is denied to the calling process.
EFAULT
msgp points to an illegal address.
EIDRM
The message queue referred to by msqid was removed from the system.
EINTR
The call was interrupted by the delivery of a signal.
EINVAL
msqid is not a valid message queue identifier.

msgsz is less than 0.

ENOMSG
The queue does not contain a message of the desired type and (msgtyp & IPC_NOWAIT) is ``true''.

SEE ALSO

intro.2 msgctl.2 msgget.2 signal.3v


index | Inhaltsverzeichniss | Kommentar

Created by unroff & hp-tools. © somebody (See intro for details). All Rights Reserved. Last modified 11/5/97