8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / man / man9s / ddi_idevice_cookie.9s
blob46dde493a4b30873fe857a7a173fbbce2630d9da
1 '\" te
2 .\"  Copyright (c) 2005, Sun Microsystems, Inc.,  All Rights Reserved
3 .\" 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.
4 .\" 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.
5 .\" 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]
6 .TH DDI_IDEVICE_COOKIE 9S "Oct 19, 2005"
7 .SH NAME
8 ddi_idevice_cookie \- device interrupt cookie
9 .SH SYNOPSIS
10 .LP
11 .nf
12 #include <sys/ddi.h>
13 #include <sys/sunddi.h>
14 .fi
16 .SH INTERFACE LEVEL
17 .sp
18 .LP
19 Solaris DDI specific (Solaris DDI). This interface is obsolete. Use the new
20 interrupt interfaces referenced in \fBIntro\fR(9F). Refer to \fIWriting Device
21 Drivers\fR for more information.
22 .SH DESCRIPTION
23 .sp
24 .LP
25 The \fBddi_idevice_cookie_t\fR structure contains interrupt priority and
26 interrupt vector information for a device. This structure is useful for devices
27 having programmable bus-interrupt levels. \fBddi_add_intr\fR(9F) assigns values
28 to the \fBddi_idevice_cookie_t\fR structure members.
29 .SH STRUCTURE MEMBERS
30 .sp
31 .in +2
32 .nf
33 u_short idev_vector;      /* interrupt vector */
34 ushort_t        idev_priority;    /* interrupt priority */
35 .fi
36 .in -2
38 .sp
39 .LP
40 The \fBidev_vector\fR field contains the interrupt vector number for vectored
41 bus architectures such as VMEbus. The \fBidev_priority\fR field contains the
42 bus interrupt priority level.
43 .SH ATTRIBUTES
44 .sp
45 .LP
46 See \fBattributes\fR(5) for descriptions of the following attributes:
47 .sp
49 .sp
50 .TS
51 box;
52 c | c
53 l | l .
54 ATTRIBUTE TYPE  ATTRIBUTE VALUE
56 Interface Stability     Obsolete
57 .TE
59 .SH SEE ALSO
60 .sp
61 .LP
62 \fBddi_add_intr\fR(9F), \fBIntro\fR(9F)
63 .sp
64 .LP
65 \fIWriting Device Drivers\fR