DarwinProcessList.h 1.16 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
/* 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.
*/

David Hunt's avatar
David Hunt committed
12
#include "ProcessList.h"
David Hunt's avatar
David Hunt committed
13
14
#include <mach/mach_host.h>
#include <sys/sysctl.h>
15

David Hunt's avatar
David Hunt committed
16
17
18
typedef struct DarwinProcessList_ {
   ProcessList super;

David Hunt's avatar
David Hunt committed
19
   host_basic_info_data_t host_info;
20
   vm_statistics_data_t vm_stats;
David Hunt's avatar
David Hunt committed
21
22
   processor_cpu_load_info_t prev_load;
   processor_cpu_load_info_t curr_load;
David Hunt's avatar
David Hunt committed
23
24
   uint64_t kernel_threads;
   uint64_t user_threads;
David Hunt's avatar
David Hunt committed
25
   uint64_t global_diff;
David Hunt's avatar
David Hunt committed
26
27
28
29
30
} DarwinProcessList;


void ProcessList_getHostInfo(host_basic_info_data_t *p);

David Hunt's avatar
David Hunt committed
31
32
33
void ProcessList_freeCPULoadInfo(processor_cpu_load_info_t *p);

unsigned ProcessList_allocateCPULoadInfo(processor_cpu_load_info_t *p);
David Hunt's avatar
David Hunt committed
34

35
void ProcessList_getVMStats(vm_statistics_t p);
David Hunt's avatar
David Hunt committed
36

David Hunt's avatar
David Hunt committed
37
struct kinfo_proc *ProcessList_getKInfoProcs(size_t *count);
38
39
40
41
42
43
44
45

ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* pidWhiteList, uid_t userId);

void ProcessList_delete(ProcessList* this);

void ProcessList_goThroughEntries(ProcessList* super);

#endif