htop/darwin/DarwinProcessList.h

45 lines
1.1 KiB
C
Raw Normal View History

/* Do not edit this file. It was automatically generated. */
#ifndef HEADER_DarwinProcessList
#define HEADER_DarwinProcessList
/*
htop - DarwinProcessList.h
(C) 2014 Hisham H. Muhammad
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
2015-07-14 02:02:40 +00:00
#include "ProcessList.h"
2015-07-13 06:17:14 +00:00
#include <mach/mach_host.h>
#include <sys/sysctl.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;
2015-07-14 02:02:40 +00:00
vm_statistics64_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-13 06:17:14 +00:00
} DarwinProcessList;
void ProcessList_getHostInfo(host_basic_info_data_t *p);
2015-07-13 22:09:18 +00:00
void ProcessList_freeCPULoadInfo(processor_cpu_load_info_t *p);
unsigned ProcessList_allocateCPULoadInfo(processor_cpu_load_info_t *p);
2015-07-13 06:17:14 +00:00
2015-07-14 02:02:40 +00:00
void ProcessList_getVMStats(vm_statistics64_t p);
2015-07-13 06:17:14 +00:00
struct kinfo_proc *ProcessList_getKInfoProcs(size_t *count);
ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* pidWhiteList, uid_t userId);
void ProcessList_delete(ProcessList* this);
void ProcessList_goThroughEntries(ProcessList* super);
#endif