![]() |
![]() |
![]() |
![]() |
![]() |
This version of this document is no longer maintained. For the latest documentation, see http://www.qnx.com/developers/docs. |
Read data from a message
#include <sys/neutrino.h>
int MsgReadv( int rcvid,
const iov_t* riov,
int rparts,
int offset );
int MsgReadv_r( int rcvid,
const iov_t* riov,
int rparts,
int offset );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The MsgReadv() and MsgReadv_r() kernel calls read data from a message sent by a thread identified by rcvid. The thread being read from must not have been replied to and will be in the REPLY-blocked state. Any thread in the receiving process is free to read the message.
These functions are identical except in the way they indicate errors. See the Returns section for details.
The data transfer occurs immediately and the thread doesn't block. The state of the sending thread doesn't change.
An attempt to read past the end of the thread's message results in fewer bytes returned than requested.
You'll use these functions in these situations:
When you're finished using MsgReadv(), you must use MsgReply*() to ready the REPLY-blocked process and complete the message exchange.
None. In the network case, lower priority threads may run.
The only difference between the MsgReadv() and MsgReadv_r() functions is the way they indicate errors:
| Safety: | |
|---|---|
| Cancellation point | No |
| Interrupt handler | No |
| Signal handler | Yes |
| Thread | Yes |
MsgRead(), MsgReceive(), MsgReceivev(), MsgReply(), MsgReplyv(), MsgWrite(), MsgWritev()
Message Passing chapter of Getting Started with QNX Neutrino
![]() |
![]() |
![]() |
![]() |