mirror of https://github.com/xzeldon/htop.git
Fixes minor whitespace issues and re-arrange headers to conform to style guide.
This commit is contained in:
parent
9de463e756
commit
58a895e54c
|
@ -27,11 +27,11 @@ in the source distribution for its full text.
|
|||
#include "CRT.h"
|
||||
#include "Macros.h"
|
||||
#include "Object.h"
|
||||
#include "netbsd/NetBSDProcess.h"
|
||||
#include "Process.h"
|
||||
#include "ProcessList.h"
|
||||
#include "Settings.h"
|
||||
#include "XUtils.h"
|
||||
#include "netbsd/NetBSDProcess.h"
|
||||
|
||||
|
||||
static long fscale;
|
||||
|
|
|
@ -44,7 +44,6 @@ typedef struct NetBSDProcessList_ {
|
|||
kvm_t* kd;
|
||||
|
||||
CPUData* cpus;
|
||||
|
||||
} NetBSDProcessList;
|
||||
|
||||
|
||||
|
|
|
@ -31,8 +31,6 @@ in the source distribution for its full text.
|
|||
#include "Macros.h"
|
||||
#include "MemoryMeter.h"
|
||||
#include "Meter.h"
|
||||
#include "netbsd/NetBSDProcess.h"
|
||||
#include "netbsd/NetBSDProcessList.h"
|
||||
#include "ProcessList.h"
|
||||
#include "Settings.h"
|
||||
#include "SignalsPanel.h"
|
||||
|
@ -41,6 +39,8 @@ in the source distribution for its full text.
|
|||
#include "TasksMeter.h"
|
||||
#include "UptimeMeter.h"
|
||||
#include "XUtils.h"
|
||||
#include "netbsd/NetBSDProcess.h"
|
||||
#include "netbsd/NetBSDProcessList.h"
|
||||
|
||||
|
||||
const ProcessField Platform_defaultFields[] = { PID, USER, PRIORITY, NICE, M_VIRT, M_RESIDENT, STATE, PERCENT_CPU, PERCENT_MEM, TIME, COMM, 0 };
|
||||
|
|
|
@ -11,6 +11,9 @@ in the source distribution for its full text.
|
|||
*/
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <sys/time.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
#include "Action.h"
|
||||
|
|
Loading…
Reference in New Issue