Adapt NetBSD code to signature change.
This commit is contained in:
parent
5dccd1801f
commit
66dfb979b8
@ -26,12 +26,12 @@
|
|||||||
#include "getsysctl.h"
|
#include "getsysctl.h"
|
||||||
#include "cpu.h"
|
#include "cpu.h"
|
||||||
|
|
||||||
uint8_t get_cpu_count()
|
uint32_t get_cpu_count()
|
||||||
{
|
{
|
||||||
int cpu_count = 0;
|
int cpu_count = 0;
|
||||||
GETSYSCTL( "hw.ncpu", cpu_count );
|
GETSYSCTL( "hw.ncpu", cpu_count );
|
||||||
|
|
||||||
return static_cast<uint8_t>( cpu_count );
|
return static_cast<uint32_t>( cpu_count );
|
||||||
}
|
}
|
||||||
|
|
||||||
float cpu_percentage( unsigned int cpu_usage_delay )
|
float cpu_percentage( unsigned int cpu_usage_delay )
|
||||||
|
Loading…
Reference in New Issue
Block a user