mirror of https://github.com/xzeldon/htop.git
Fix generation of openbsd/Platform.h and replace a vestigial dummy CPU utilization value
This commit is contained in:
parent
c4eb99f264
commit
9f1884c28f
|
@ -38,6 +38,7 @@ in the source distribution for its full text.
|
||||||
/*{
|
/*{
|
||||||
#include "Action.h"
|
#include "Action.h"
|
||||||
#include "BatteryMeter.h"
|
#include "BatteryMeter.h"
|
||||||
|
#include "SignalsPanel.h"
|
||||||
|
|
||||||
extern ProcessFieldData Process_fields[];
|
extern ProcessFieldData Process_fields[];
|
||||||
|
|
||||||
|
@ -231,7 +232,7 @@ double Platform_setCPUValues(Meter* this, int cpu) {
|
||||||
if (perc <= 100. && perc >= 0.) {
|
if (perc <= 100. && perc >= 0.) {
|
||||||
return perc;
|
return perc;
|
||||||
} else {
|
} else {
|
||||||
return 12.34;
|
return 0.;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -36,6 +36,9 @@ extern ProcessField Platform_defaultFields[];
|
||||||
|
|
||||||
extern int Platform_numberOfFields;
|
extern int Platform_numberOfFields;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* See /usr/include/sys/signal.h
|
||||||
|
*/
|
||||||
extern SignalItem Platform_signals[];
|
extern SignalItem Platform_signals[];
|
||||||
|
|
||||||
extern unsigned int Platform_numberOfSignals;
|
extern unsigned int Platform_numberOfSignals;
|
||||||
|
|
Loading…
Reference in New Issue