# # Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. # # Intrs.pm provides the bootstrap for the private Sun::Solaris::Intrs module. # package Sun::Solaris::Intrs; use strict; use warnings; use Exporter; use DynaLoader; use vars qw($VERSION @ISA @EXPORT_OK); our @ISA = qw(Exporter DynaLoader); our @EXPORT_OK = qw(intrmove is_apic); our $VERSION = '0.02'; bootstrap Sun::Solaris::Intrs $VERSION; 1;