 |
Index for Section 9r |
|
 |
Alphabetical listing for N |
|
 |
Bottom of page |
|
noenable(9r)
NAME
noenable - STREAMS: Prevents a queue from being scheduled
SYNOPSIS
#include <sys/stream.h>
void noenable(
queue_t *queue );
ARGUMENTS
queue
Specifies the pointer to the queue that you want to prevent from being
scheduled. The typedef queue_t is an alternate name for struct
queue_entry *.
DESCRIPTION
The noenable interface prevents the queue associated with the queue
argument from being scheduled for service by the insq, putbq, or putq
interfaces when enqueuing an ordinary priority message. You can enable the
queue again by calling the enableok interface.
RETURN VALUES
None
SEE ALSO
Kernel Interfaces: enableok(9r), insq(9r), putbq(9r), putq(9r), qenable(9r)
 |
Index for Section 9r |
|
 |
Alphabetical listing for N |
|
 |
Top of page |
|