putnext - STREAMS: Sends a message to the next module in
the stream
#include <sys/stream.h>
void putnext(
queue_t *queue_pointer,
MBLKP message_ptr );
Specifies a pointer to the queue from which the message
will be sent. The typedef queue_t is an alternate name for
struct queue_entry *. Specifies a pointer to the message
block to be passed. The typedef MBLKP is an alternate name
for typedef struct msgb *.
The putnext interface passes a message to the puthere
interface of the next queue in the stream.
None
putnext(9r)
[ Back ] |