| |
| Kernel Functions for Drivers | noenable(9F) |
| | noenable - prevent a queue from being scheduled |
SYNOPSIS
| |
#include <sys/stream.h>
#include <sys/ddi.h>
void noenable(queue_t *q); |
| |
Architecture independent level 1 (DDI/DKI).
|
| |
noenable() prevents the queue q from being scheduled for service by insq(9F), putq(9F) or putbq(9F) when enqueuing an ordinary priority message. The queue can be re-enabled with the enableok(9F) function.
|
| |
noenable() can be called from user or interrupt context.
|
| |