Merge commit '9276b3991ba20d5a5660887ba81b0bc7bed25a0c'
[unleashed.git] / share / man / man9f / enableok.9f
blob8dc0ba6df0703cf711550bbfaa95f7a3a81d0b37
1 '\" te
2 .\" Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved.
3 .\" Copyright 1989 AT&T
4 .\" 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.
5 .\" 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.
6 .\" 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]
7 .TH ENABLEOK 9F "Jan 16, 2006"
8 .SH NAME
9 enableok \- reschedule a queue for service
10 .SH SYNOPSIS
11 .LP
12 .nf
13 #include <sys/stream.h>
14 #include <sys/ddi.h>
18 \fBvoid\fR \fBenableok\fR(\fBqueue_t *\fR\fIq\fR);
19 .fi
21 .SH INTERFACE LEVEL
22 .sp
23 .LP
24 Architecture independent level 1 (DDI/DKI).
25 .SH PARAMETERS
26 .sp
27 .ne 2
28 .na
29 \fB\fIq\fR\fR
30 .ad
31 .RS 5n
32 A pointer to the queue to be rescheduled.
33 .RE
35 .SH DESCRIPTION
36 .sp
37 .LP
38 The \fBenableok()\fR function enables queue \fIq\fR to be rescheduled for
39 service. It reverses the effect of a previous call to \fBnoenable\fR(9F) on
40 \fIq\fR by turning off the \fBQNOENB\fR flag in the queue.
41 .SH CONTEXT
42 .sp
43 .LP
44 The \fBenableok()\fR function can be called from user, interrupt, or kernel
45 context.
46 .SH EXAMPLES
47 .LP
48 \fBExample 1 \fRUsing \fBemableok()\fR
49 .sp
50 .LP
51 The \fBqrestart()\fR routine uses two STREAMS functions to restart a queue that
52 has been disabled. The \fBenableok()\fR function turns off the  \fBQNOENB\fR
53 flag, allowing the \fBqenable\fR(9F) to schedule the queue for immediate
54 processing.
56 .sp
57 .in +2
58 .nf
59 1  void
60 2  qrestart(rdwr_q)
61 3          register queue_t *rdwr_q;
62 4  {
63 5     enableok(rdwr_q);
64 6     /* re-enable a queue that has been disabled */
65 7     (void) qenable(rdwr_q);
66 8  }
67 .fi
68 .in -2
70 .SH SEE ALSO
71 .sp
72 .LP
73 \fBnoenable\fR(9F), \fBqenable\fR(9F)
74 .sp
75 .LP
76 \fIWriting Device Drivers\fR
77 .sp
78 .LP
79 \fISTREAMS Programming Guide\fR