bd335c6465ddbafe543900df4b03247bfa288effesolom# CDDL HEADER START
bd335c6465ddbafe543900df4b03247bfa288effesolom#
bd335c6465ddbafe543900df4b03247bfa288effesolom# The contents of this file are subject to the terms of the
2917a9c9c3eee6fcaedb239f5f68da01f4ed0da9schwartz# Common Development and Distribution License (the "License").
2917a9c9c3eee6fcaedb239f5f68da01f4ed0da9schwartz# You may not use this file except in compliance with the License.
bd335c6465ddbafe543900df4b03247bfa288effesolom#
bd335c6465ddbafe543900df4b03247bfa288effesolom# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
bd335c6465ddbafe543900df4b03247bfa288effesolom# or http://www.opensolaris.org/os/licensing.
bd335c6465ddbafe543900df4b03247bfa288effesolom# See the License for the specific language governing permissions
bd335c6465ddbafe543900df4b03247bfa288effesolom# and limitations under the License.
bd335c6465ddbafe543900df4b03247bfa288effesolom#
bd335c6465ddbafe543900df4b03247bfa288effesolom# When distributing Covered Code, include this CDDL HEADER in each
bd335c6465ddbafe543900df4b03247bfa288effesolom# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
bd335c6465ddbafe543900df4b03247bfa288effesolom# If applicable, add the following below this CDDL HEADER, with the
bd335c6465ddbafe543900df4b03247bfa288effesolom# fields enclosed by brackets "[]" replaced with your own identifying
bd335c6465ddbafe543900df4b03247bfa288effesolom# information: Portions Copyright [yyyy] [name of copyright owner]
bd335c6465ddbafe543900df4b03247bfa288effesolom#
bd335c6465ddbafe543900df4b03247bfa288effesolom# CDDL HEADER END
bd335c6465ddbafe543900df4b03247bfa288effesolom
bd335c6465ddbafe543900df4b03247bfa288effesolom#
5cd376e8b7030707d78315f63adb4bb2b4d9963eJimmy Vetayases# Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
bd335c6465ddbafe543900df4b03247bfa288effesolom#
bd335c6465ddbafe543900df4b03247bfa288effesolom# Intrs.pm provides the bootstrap for the private Sun::Solaris::Intrs module.
bd335c6465ddbafe543900df4b03247bfa288effesolom#
bd335c6465ddbafe543900df4b03247bfa288effesolom
bd335c6465ddbafe543900df4b03247bfa288effesolompackage Sun::Solaris::Intrs;
bd335c6465ddbafe543900df4b03247bfa288effesolom
bd335c6465ddbafe543900df4b03247bfa288effesolomuse strict;
bd335c6465ddbafe543900df4b03247bfa288effesolomuse warnings;
bd335c6465ddbafe543900df4b03247bfa288effesolomuse Exporter;
bd335c6465ddbafe543900df4b03247bfa288effesolomuse DynaLoader;
bd335c6465ddbafe543900df4b03247bfa288effesolomuse vars qw($VERSION @ISA @EXPORT_OK);
bd335c6465ddbafe543900df4b03247bfa288effesolom
bd335c6465ddbafe543900df4b03247bfa288effesolomour @ISA = qw(Exporter DynaLoader);
7ff178cd8db129d385d3177eb20744d3b6efc59bJimmy Vetayasesour @EXPORT_OK = qw(intrmove is_apic);
2917a9c9c3eee6fcaedb239f5f68da01f4ed0da9schwartzour $VERSION = '0.02';
bd335c6465ddbafe543900df4b03247bfa288effesolom
bd335c6465ddbafe543900df4b03247bfa288effesolombootstrap Sun::Solaris::Intrs $VERSION;
bd335c6465ddbafe543900df4b03247bfa288effesolom1;