[Go to CFHT Home Page] Man Pages
Back to Software Index  BORDER=0Manpage Top Level
    strqget(9F) manual page Table of Contents

Name

strqget - get information about a queue or band of the queue

Synopsis


#include <sys/stream.h>

int strqget(queue_t *q, qfields_t what, unsigned char pri, long *valp);

Arguments

q
Pointer to the queue.
what
Field of the queue structure for (or the specified priority band) to return information about. Valid values are one of:
QHIWAT
High water mark.
QLOWAT
Low water mark.
QMAXPSZ
Largest packet accepted.
QMINPSZ
Smallest packet accepted.
QCOUNT
Approximate size (in bytes) of data.
QFIRST
First message.
QLAST
Last message.
QFLAG
Status.
pri
Priority band of interest.
valp
The address of where to store the value of the requested field.

Interface Level

Architecture independent level 1 (DDI/DKI).

Description

strqget() gives drivers and modules a way to get information about a queue or a particular band of a queue without directly accessing STREAMS data structures, thus insulating them from changes in the implementation of these data structures from release to release.

Return Values

On success, 0 is returned and the value of the requested field is stored in the location pointed to by valp. An error number is returned on failure.

Context

strqget() can be called from user or interrupt context.

See Also

freezestr(9F) , strqset(9F) , unfreezestr(9F) , queue(9S)


Notes

The stream must be frozen using freezestr(9F) before calling strqget().


Table of Contents