Process.h 5.57 KB
Newer Older
Hisham Muhammad's avatar
Hisham Muhammad committed
1
/* Do not edit this file. It was automatically generated. */
Hisham Muhammad's avatar
Hisham Muhammad committed
2
3
4
5
6

#ifndef HEADER_Process
#define HEADER_Process
/*
htop - Process.h
Hisham Muhammad's avatar
Hisham Muhammad committed
7
(C) 2004-2011 Hisham H. Muhammad
Hisham Muhammad's avatar
Hisham Muhammad committed
8
9
10
11
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/

12
#ifdef HAVE_LIBHWLOC
Hisham Muhammad's avatar
Hisham Muhammad committed
13
#endif
14

Hisham Muhammad's avatar
Hisham Muhammad committed
15
16
// This works only with glibc 2.1+. On earlier versions
// the behavior is similar to have a hardcoded page size.
17
#ifndef PAGE_SIZE
Hisham Muhammad's avatar
Hisham Muhammad committed
18
#define PAGE_SIZE ( sysconf(_SC_PAGESIZE) )
19
#endif
Hisham Muhammad's avatar
Hisham Muhammad committed
20
#define PAGE_SIZE_KB ( PAGE_SIZE / ONE_K )
Hisham Muhammad's avatar
Hisham Muhammad committed
21

Hisham Muhammad's avatar
Hisham Muhammad committed
22
23
#include "Object.h"
#include "Affinity.h"
24
#include "IOPriority.h"
Hisham Muhammad's avatar
Hisham Muhammad committed
25
#include <sys/types.h>
Hisham Muhammad's avatar
Hisham Muhammad committed
26

27
28
29
30
31
32
#define PROCESS_FLAG_IO 1
#define PROCESS_FLAG_IOPRIO 2
#define PROCESS_FLAG_OPENVZ 4
#define PROCESS_FLAG_VSERVER 8
#define PROCESS_FLAG_CGROUP 16

33
34
35
36
37
38
39
#ifndef Process_isKernelThread
#define Process_isKernelThread(_process) (_process->pgrp == 0)
#endif

#ifndef Process_isUserlandThread
#define Process_isUserlandThread(_process) (_process->pid != _process->tgid)
#endif
Hisham Muhammad's avatar
Hisham Muhammad committed
40

Hisham Muhammad's avatar
Hisham Muhammad committed
41
#ifndef Process_isThread
42
#define Process_isThread(_process) (Process_isUserlandThread(_process) || Process_isKernelThread(_process))
Hisham Muhammad's avatar
Hisham Muhammad committed
43
44
#endif

Hisham Muhammad's avatar
Hisham Muhammad committed
45
46
47
48
49
typedef enum ProcessField_ {
   PID = 1, COMM, STATE, PPID, PGRP, SESSION, TTY_NR, TPGID, FLAGS, MINFLT, CMINFLT, MAJFLT, CMAJFLT, UTIME,
   STIME, CUTIME, CSTIME, PRIORITY, NICE, ITREALVALUE, STARTTIME, VSIZE, RSS, RLIM, STARTCODE, ENDCODE,
   STARTSTACK, KSTKESP, KSTKEIP, SIGNAL, BLOCKED, SSIGIGNORE, SIGCATCH, WCHAN, NSWAP, CNSWAP, EXIT_SIGNAL,
   PROCESSOR, M_SIZE, M_RESIDENT, M_SHARE, M_TRS, M_DRS, M_LRS, M_DT, ST_UID, PERCENT_CPU, PERCENT_MEM,
50
   USER, TIME, NLWP, TGID,
51
   #ifdef HAVE_OPENVZ
52
   CTID, VPID,
53
   #endif
Hisham Muhammad's avatar
Hisham Muhammad committed
54
55
56
   #ifdef HAVE_VSERVER
   VXID,
   #endif
57
   #ifdef HAVE_TASKSTATS
58
   RCHAR, WCHAR, SYSCR, SYSCW, RBYTES, WBYTES, CNCLWB, IO_READ_RATE, IO_WRITE_RATE, IO_RATE,
59
   #endif
60
61
62
   #ifdef HAVE_CGROUP
   CGROUP,
   #endif
63
64
65
   #ifdef HAVE_OOM
   OOM,
   #endif
66
   IO_PRIORITY,
67
   LAST_PROCESSFIELD
Hisham Muhammad's avatar
Hisham Muhammad committed
68
69
70
71
72
73
74
75
76
77
} ProcessField;

struct ProcessList_;

typedef struct Process_ {
   Object super;

   struct ProcessList_ *pl;
   bool updated;

Hisham Muhammad's avatar
Hisham Muhammad committed
78
   pid_t pid;
Hisham Muhammad's avatar
Hisham Muhammad committed
79
80
81
82
   char* comm;
   int indent;
   char state;
   bool tag;
Hisham Muhammad's avatar
Hisham Muhammad committed
83
   bool showChildren;
84
   bool show;
Hisham Muhammad's avatar
Hisham Muhammad committed
85
   pid_t ppid;
86
87
88
   unsigned int pgrp;
   unsigned int session;
   unsigned int tty_nr;
Hisham Muhammad's avatar
Hisham Muhammad committed
89
   pid_t tgid;
90
   int tpgid;
Hisham Muhammad's avatar
Hisham Muhammad committed
91
   unsigned long int flags;
92
   #ifdef DEBUG
Hisham Muhammad's avatar
Hisham Muhammad committed
93
94
95
96
   unsigned long int minflt;
   unsigned long int cminflt;
   unsigned long int majflt;
   unsigned long int cmajflt;
97
   #endif
98
99
100
101
   unsigned long long int utime;
   unsigned long long int stime;
   unsigned long long int cutime;
   unsigned long long int cstime;
Hisham Muhammad's avatar
Hisham Muhammad committed
102
103
   long int priority;
   long int nice;
104
   long int nlwp;
105
   IOPriority ioPriority;
Hisham Muhammad's avatar
Hisham Muhammad committed
106
107
   char starttime_show[8];
   time_t starttime_ctime;
108
   #ifdef DEBUG
Hisham Muhammad's avatar
Hisham Muhammad committed
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
   long int itrealvalue;
   unsigned long int vsize;
   long int rss;
   unsigned long int rlim;
   unsigned long int startcode;
   unsigned long int endcode;
   unsigned long int startstack;
   unsigned long int kstkesp;
   unsigned long int kstkeip;
   unsigned long int signal;
   unsigned long int blocked;
   unsigned long int sigignore;
   unsigned long int sigcatch;
   unsigned long int wchan;
   unsigned long int nswap;
   unsigned long int cnswap;
125
   #endif
Hisham Muhammad's avatar
Hisham Muhammad committed
126
127
128
129
130
131
132
133
134
135
136
137
   int exit_signal;
   int processor;
   int m_size;
   int m_resident;
   int m_share;
   int m_trs;
   int m_drs;
   int m_lrs;
   int m_dt;
   uid_t st_uid;
   float percent_cpu;
   float percent_mem;
138
   char* user;
139
   #ifdef HAVE_OPENVZ
140
   unsigned int ctid;
141
142
   unsigned int vpid;
   #endif
Hisham Muhammad's avatar
Hisham Muhammad committed
143
144
145
   #ifdef HAVE_VSERVER
   unsigned int vxid;
   #endif
146
147
148
149
150
151
152
153
154
155
156
157
158
   #ifdef HAVE_TASKSTATS
   unsigned long long io_rchar;
   unsigned long long io_wchar;
   unsigned long long io_syscr;
   unsigned long long io_syscw;
   unsigned long long io_read_bytes;
   unsigned long long io_write_bytes;
   unsigned long long io_cancelled_write_bytes;
   double io_rate_read_bps;
   unsigned long long io_rate_read_time;
   double io_rate_write_bps;
   unsigned long long io_rate_write_time;   
   #endif
159
160
161
   #ifdef HAVE_CGROUP
   char* cgroup;
   #endif
162
163
164
   #ifdef HAVE_OOM
   unsigned int oom;
   #endif
Hisham Muhammad's avatar
Hisham Muhammad committed
165
166
167
} Process;


Hisham Muhammad's avatar
Hisham Muhammad committed
168
extern const char *Process_fieldNames[];
Hisham Muhammad's avatar
Hisham Muhammad committed
169

170
171
extern const int Process_fieldFlags[];

Hisham Muhammad's avatar
Hisham Muhammad committed
172
extern const char *Process_fieldTitles[];
173

174
175
176

void Process_getMaxPid();

177
178
179
#define ONE_K 1024
#define ONE_M (ONE_K * ONE_K)
#define ONE_G (ONE_M * ONE_K)
Hisham Muhammad's avatar
Hisham Muhammad committed
180
181
182

void Process_delete(Object* cast);

183
184
extern ObjectClass Process_class;

185
186
Process* Process_new(struct ProcessList_ *pl);

Hisham Muhammad's avatar
Hisham Muhammad committed
187
188
void Process_toggleTag(Process* this);

189
bool Process_setPriority(Process* this, int priority);
Hisham Muhammad's avatar
Hisham Muhammad committed
190

191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
bool Process_changePriorityBy(Process* this, size_t delta);

IOPriority Process_updateIOPriority(Process* this);

bool Process_setIOPriority(Process* this, IOPriority ioprio);

/*
[1] Note that before kernel 2.6.26 a process that has not asked for
an io priority formally uses "none" as scheduling class, but the
io scheduler will treat such processes as if it were in the best
effort class. The priority within the best effort class will  be
dynamically  derived  from  the  cpu  nice level of the process:
extern io_priority;
*/
#define Process_effectiveIOPriority(p_) (IOPriority_class(p_->ioPriority) == IOPRIO_CLASS_NONE ? IOPriority_tuple(IOPRIO_CLASS_BE, (p_->nice + 20) / 5) : p_->ioPriority)

207
#ifdef HAVE_LIBHWLOC
208

209
Affinity* Process_getAffinity(Process* this);
210

211
bool Process_setAffinity(Process* this, Affinity* affinity);
212
213
214
215
216
217
218

#elif HAVE_NATIVE_AFFINITY

Affinity* Process_getAffinity(Process* this);

bool Process_setAffinity(Process* this, Affinity* affinity);

Hisham Muhammad's avatar
Hisham Muhammad committed
219
#endif
220

221
void Process_sendSignal(Process* this, size_t sgn);
Hisham Muhammad's avatar
Hisham Muhammad committed
222

223
224
225
int Process_pidCompare(const void* v1, const void* v2);

int Process_compare(const void* v1, const void* v2);
Hisham Muhammad's avatar
Hisham Muhammad committed
226
227

#endif