htop/darwin/DarwinProcessList.h

40 lines
1021 B
C
Raw Normal View History

#ifndef HEADER_DarwinProcessList
#define HEADER_DarwinProcessList
/*
htop - DarwinProcessList.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>
2019-07-07 21:30:37 +00:00
2015-07-14 02:02:40 +00:00
#include "ProcessList.h"
#include "zfs/ZfsArcStats.h"
2015-07-13 06:17:14 +00:00
typedef struct DarwinProcessList_ {
ProcessList super;
2015-07-13 21:53:46 +00:00
host_basic_info_data_t host_info;
vm_statistics_data_t vm_stats;
2015-07-13 22:09:18 +00:00
processor_cpu_load_info_t prev_load;
processor_cpu_load_info_t curr_load;
2015-07-14 02:02:40 +00:00
uint64_t kernel_threads;
uint64_t user_threads;
2015-07-14 16:46:16 +00:00
uint64_t global_diff;
2019-07-07 21:30:37 +00:00
ZfsArcStats zfs;
2015-07-13 06:17:14 +00:00
} DarwinProcessList;
ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* dynamicMeters, Hashtable* dynamicColumns, Hashtable* pidMatchList, uid_t userId);
void ProcessList_delete(ProcessList* this);
void ProcessList_goThroughEntries(ProcessList* super, bool pauseProcessUpdate);
2021-06-12 20:04:37 +00:00
bool ProcessList_isCPUonline(const ProcessList* super, unsigned int id);
#endif