noenable - STREAMS: Prevents a queue from being scheduled
#include <sys/stream.h>
void noenable(
queue_t *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 *.
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.
None
Kernel Interfaces: enableok(9r), insq(9r), putbq(9r),
putq(9r), qenable(9r)
noenable(9r)
[ Back ] |