|
our $VERSION = '1.16.0' ;
__PACKAGE__->section( "processor" );
__PACKAGE__-> has (
[
{ key => 'Max Speed' , from => "Maximum Speed" },
'Family' ,
{ key => 'Status' , from => "Processor Status" },
],
1
);
sub new {
my $that = shift ;
my $proto = ref ( $that ) || $that ;
my $self = $that ->SUPER::new( @_ );
bless ( $self , $proto );
return $self ;
}
sub num_cores {
my ( $self ) = @_ ;
Rex::Logger::debug( "num_cores not supported" );
return -1;
}
sub get_socket_type {
my ( $self ) = @_ ;
Rex::Logger::debug( "get_socket_type not supported" );
return ;
}
1;
|