xref: /onnv-gate/usr/src/cmd/perl/contrib/Sun/Solaris/Intrs/Intrs.pm (revision 12825:e35468461453)
1172Sesolom# CDDL HEADER START
2172Sesolom#
3172Sesolom# The contents of this file are subject to the terms of the
44397Sschwartz# Common Development and Distribution License (the "License").
54397Sschwartz# You may not use this file except in compliance with the License.
6172Sesolom#
7172Sesolom# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
8172Sesolom# or http://www.opensolaris.org/os/licensing.
9172Sesolom# See the License for the specific language governing permissions
10172Sesolom# and limitations under the License.
11172Sesolom#
12172Sesolom# When distributing Covered Code, include this CDDL HEADER in each
13172Sesolom# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
14172Sesolom# If applicable, add the following below this CDDL HEADER, with the
15172Sesolom# fields enclosed by brackets "[]" replaced with your own identifying
16172Sesolom# information: Portions Copyright [yyyy] [name of copyright owner]
17172Sesolom#
18172Sesolom# CDDL HEADER END
19172Sesolom
20172Sesolom#
21*12825SJimmy.Vetayases@oracle.com# Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
22172Sesolom#
23172Sesolom# Intrs.pm provides the bootstrap for the private Sun::Solaris::Intrs module.
24172Sesolom#
25172Sesolom
26172Sesolompackage Sun::Solaris::Intrs;
27172Sesolom
28172Sesolomuse strict;
29172Sesolomuse warnings;
30172Sesolomuse Exporter;
31172Sesolomuse DynaLoader;
32172Sesolomuse vars qw($VERSION @ISA @EXPORT_OK);
33172Sesolom
34172Sesolomour @ISA = qw(Exporter DynaLoader);
3512683SJimmy.Vetayases@oracle.comour @EXPORT_OK = qw(intrmove is_apic);
364397Sschwartzour $VERSION = '0.02';
37172Sesolom
38172Sesolombootstrap Sun::Solaris::Intrs $VERSION;
39172Sesolom1;
40