[Previous] [Contents] [Index] [Next]

Caution: This version of this document is no longer maintained. For the latest documentation, see http://www.qnx.com/developers/docs.

MsgReceive(), MsgReceive_r()

Wait for a message or pulse on a channel

Synopsis:

#include <sys/neutrino.h>

int MsgReceive( int chid,
                void * msg,
                int bytes,
                struct _msg_info * info );

int MsgReceive_r( int chid,
                  void * msg,
                  int bytes,
                  struct _msg_info * info );

Arguments:

chid
The ID of a channel that you established by calling ChannelCreate().
msg
A pointer to a buffer where the function can store the received data.
bytes
The size of the buffer.
info
NULL, or a pointer to a _msg_info structure where the function can store additional information about the message.

Library:

libc

Use the -l c option to qcc to link against this library. This library is usually included automatically.

Description:

The MsgReceive() and MsgReceive_r() kernel calls wait for a message or pulse to arrive on the channel identified by chid, and store the received data in the buffer pointed to by msg.

These functions are identical, except in the way they indicate errors; see the Returns section for details.

The number of bytes transferred is the minimum of that specified by both the sender and the receiver. The received data isn't allowed to overflow the receive buffer area provided.


Note: The msg buffer must be big enough to contain a pulse. If it isn't, the functions indicate an error of EFAULT.

If a message is waiting on the channel when you call MsgReceive(), the calling thread doesn't block, and the message is immediately copied. If a message isn't waiting, the calling thread enters the RECEIVE-blocked state until a message arrives.

If multiple messages are sent to a channel without a thread waiting to receive them, the messages are queued in priority order.

If you pass a non-NULL pointer for info, the functions store additional information about the message and the thread that sent it in the _msg_info structure that info points to. You can get this information later by calling MsgInfo().

On sucess, MsgReceive() and MsgReceive_r() return:

>0
A message was received; the returned value is a a rcvid (receive identifier). You'll use the rcvid with other Msg*() kernel calls to interact with and reply to the sending thread. MsgReceive() changes the state of the sending thread to REPLY-blocked when the message is received. When you use MsgReply*() to reply to the received message, the sending thread is made ready again. The rcvid encodes the sending thread's ID and a local connection ID.
0
A pulse was received; msg contains a pulse message of type _pulse. When a pulse is received, the kernel space allocated to hold it is immediately released. The _msg_info structure isn't updated.
Note: Don't reply to a pulse.

Blocking states

State Meaning
STATE_RECEIVE There's no message waiting

Native networking

In networked message-passing transactions, the most noticeable impact is on the server. The server receives the client's message from the server's local npm-qnet. Note that the receive ID that comes back from MsgReceive() will have some differences, but you don't need to worry about the format of the receive ID -- just treat it as a "magic cookie."

When the server unblocks from its MsgReceive(), it may or may not have received as much of the message as it would in the local case. This is because of the way that message passing is defined -- the client and the server agree on the size of the message transfer area (the transmit parameters passed to MsgSend() on the client end) and the size of the message receive area on the server's MsgReceive().

In a local message pass, the kernel would ordinarily limit the size of the transfer to the minimum of both sizes. But in the networked case, the message is received by the client's npm-qnet into its own private buffers and then sent via transport to the remote npm-qnet. Since the size of the server's receive data area can't be known in advance by the client's npm-qnet when the message is sent, only a fixed maximum size (currently 8K) message is transferred between the client and the server.

This means, for example, that if the client sends 1 Mbyte of data and the server issues a MsgReceive() with a 1-Mbyte data area, then only the number of bytes determined by a network manager would in fact be transferred. The number of bytes transferred to the server is returned via the last parameter to MsgReceive() or a call to MsgInfo(), specifically the msglen member of struct _msg_info. The client doesn't notice this, because it's still blocked.

You can use the following code to ensure that the desired number of bytes are received. Note that this is handled for you automatically when you're using the resource manager library:

chid = ChannelCreate(_NTO_CHF_SENDER_LEN);
...
rcvid = MsgReceive(chid, msg, nbytes, &info);

/*
 Doing a network transaction and not all
 the message was send, so get the rest...
*/
if (rcvid > 0 && info.srcmsglen > info.msglen &&
    info.msglen < nbytes) {
   int n;

   if((n = MsgRead_r(rcvid, (char *) msg + info.msglen,
           nbytes - info.msglen, info.msglen)) < 0) {
       MsgError(rcvid, -n);
       continue;
   }
   info.msglen += n;
}

Returns:

The only difference between MsgReceive() and MsgReceive_r() is the way they indicate errors. On success, both functions return a positive rcvid if they received a message, or 0 if they received a pulse.

If an error occurs:

Errors:

EFAULT
A fault occurred when the kernel tried to access the buffers provided. Because the OS accesses the sender's buffers only when MsgReceive() is called, a fault could occur in the sender if the sender's buffers are invalid. If a fault occurs when accessing the sender buffers (only) they'll receive an EFAULT and MsgReceive() won't unblock.
EINTR
The call was interrupted by a signal.
ESRCH
The channel indicated by chid doesn't exist.
ETIMEDOUT
A kernel timeout unblocked the call. See TimerTimeout().

Classification:

QNX Neutrino

Safety:
Cancellation point No
Interrupt handler No
Signal handler Yes
Thread Yes

Caveats:

The maximum size for one-part message-pass is 232 - 1 (SSIZE_MAX).

See also:

ChannelCreate(), _msg_info, MsgInfo(), MsgRead(), MsgReadv(), MsgReceivePulse(), MsgReceivePulsev(), MsgReceivev(), MsgReply(), MsgReplyv(), MsgSend(), MsgWrite(), MsgWritev(), _pulse, TimerTimeout()


[Previous] [Contents] [Index] [Next]