Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved.
Copyright 1989 AT&T
The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License.
You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License.
When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
#include <sys/stream.h> int strqset(queue_t *q, qfields_t what, unsigned char pri, intptr_t val);
Architecture independent level 1 (DDI/DKI).
Pointer to the queue.
Field of the queue structure (or the specified priority band) to return information about. Valid values are one of: QHIWAT
High water mark.
Low water mark.
Largest packet accepted.
Smallest packet accepted.
Priority band of interest.
The value for the field to be changed.
The strqset() function gives drivers and modules a way to change information about a queue or a particular band of a queue without directly accessing STREAMS data structures.
On success, 0 is returned. EINVAL is returned if an undefined attribute is specified.
The strqset() function can be called from user, interrupt, or kernel context.
strqget(9F), queue(9S)
Writing Device Drivers
STREAMS Programming Guide
When lowering existing values, set QMINPSZ before setting QMAXPSZ; when raising existing values, set QMAXPSZ before setting QMINPSZ.