The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Sys::Info::Device - Information about devices

SYNOPSIS

    use Sys::Info;
    my $info      = Sys::Info->new;
    my $device    = $info->device( $device_id );
    my @available = $info->device('available');

or

    use Sys::Info::Device;
    my $device    = Sys::Info::Device->new( $device_id );
    my @available = Sys::Info::Device->new('available');

DESCRIPTION

This document describes version 0.7802 of Sys::Info::Device released on 31 July 2011.

This is an interface to the available devices such as the CPU.

METHODS

new DEVICE_ID

Returns an object to the related device or dies if DEVICE_ID is bogus or false.

If DEVICE_ID has the value of available, then the names of the available devices will be returned.

SEE ALSO

Sys::Info::Device::CPU, Sys::Info.

AUTHOR

Burak Gursoy <burak@cpan.org>.

COPYRIGHT

Copyright 2006 - 2011 Burak Gursoy. All rights reserved.

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.12.3 or, at your option, any later version of Perl 5 you may have available.