qreply - STREAMS: Sends a message in the reverse direction
#include <sys/stream.h>
void qreply(
queue_t *queue_pointer,
MBLKP message_ptr );
Specifies a pointer to the queue. The typedef queue_t is
an alternate name for struct queue_entry *. Specifies a
pointer to the message block to be sent in the opposite
direction. The typedef MBLKP is an alternate name for
typedef struct msgb *.
The qreply interface sends a message on a stream in the
opposite direction from the queue specified in the
queue_pointer argument. It calls the OTHERQ interface to
find the queue's module partner.
None
Kernel Interfaces: OTHERQ(9r), putnext(9r)
qreply(9r)
[ Back ] |