You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
567 B
28 lines
567 B
#ifndef HEADER_DarwinMachine |
|
#define HEADER_DarwinMachine |
|
/* |
|
htop - DarwinMachine.h |
|
(C) 2014 Hisham H. Muhammad |
|
Released under the GNU GPLv2+, see the COPYING file |
|
in the source distribution for its full text. |
|
*/ |
|
|
|
#include <mach/mach_host.h> |
|
#include <sys/sysctl.h> |
|
|
|
#include "Machine.h" |
|
#include "zfs/ZfsArcStats.h" |
|
|
|
|
|
typedef struct DarwinMachine_ { |
|
Machine super; |
|
|
|
host_basic_info_data_t host_info; |
|
vm_statistics_data_t vm_stats; |
|
processor_cpu_load_info_t prev_load; |
|
processor_cpu_load_info_t curr_load; |
|
|
|
ZfsArcStats zfs; |
|
} DarwinMachine; |
|
|
|
#endif
|
|
|