-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproc_stat.h
277 lines (230 loc) · 6.49 KB
/
proc_stat.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
/*
* This file is part of libsysperf
*
* Copyright (C) 2001, 2004-2007 by Nokia Corporation.
*
* Contact: Eero Tamminen <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*
*/
/* ========================================================================= *
* File: proc_stat.h
*
* Author: Simo Piiroinen
*
* -------------------------------------------------------------------------
*
* History:
*
* 31-May-2006 Simo Piiroinen
* - copied from track2 source tree
* ========================================================================= */
#ifndef PROC_STAT_H_
#define PROC_STAT_H_
#ifdef __cplusplus
extern "C" {
#endif
typedef struct proc_stat_t
{
int pid; // %d
/* The process id.
*/
char comm[64]; // %s - %quoted
/* The filename of the executable, in
* parentheses. This is visible
* whether or not the executable is
* swapped out.
*/
int state; // %c
/* One character from the string
* "RSDZTW" where R is running, S is
* sleeping in an interruptible wait, D
* is waiting in uninterruptible disk
* sleep, Z is zombie, T is traced or
* stopped (on a signal), and W is pag-
* ing.
*/
int ppid; // %d
/* The PID of the parent.
*/
int pgrp; // %d
/* The process group ID of the process.
*/
int session; // %d
/* The session ID of the process.
*/
int tty_nr; // %d
/* The tty the process uses.
*/
int tpgid; // %d
/* The process group ID of the process
* which currently owns the tty that
* the process is connected to.
*/
unsigned long flags; // %lu
/* The flags of the process. The math
* bit is decimal 4, and the traced bit
* is decimal 10.
*/
unsigned long minflt; // %lu
/* The number of minor faults the pro-
* cess has made which have not
* required loading a memory page from
* disk.
*/
unsigned long cminflt; // %lu
/* The number of minor faults that the
* process and its children have made.
*/
unsigned long majflt; // %lu
/* The number of major faults the pro-
* cess has made which have required
* loading a memory page from disk.
*/
unsigned long cmajflt; // %lu
/* The number of major faults that the
* process and its children have made.
*/
unsigned long utime; // %lu
/* The number of jiffies that this pro-
* cess has been scheduled in user
* mode.
*/
unsigned long stime; // %lu
/* The number of jiffies that this pro-
* cess has been scheduled in kernel
* mode.
*/
signed long cutime; // %ld
/* The number of jiffies that this pro-
* cess and its children have been
* scheduled in user mode.
*/
signed long cstime; // %ld
/* The number of jiffies that this pro-
* cess and its children have been
* scheduled in kernel mode.
*/
signed long priority; // %ld
/* The standard nice value, plus fif-
* teen. The value is never negative
* in the kernel.
*/
signed long nice; // %ld
/* The nice value ranges from 19
* (nicest) to -19 (not nice to oth-
* ers).
*/
signed long unused0; // %ld
/* This value is hard coded to 0 as a
* placeholder for a removed field.
*/
signed long itrealvalue; // %ld
/* The time in jiffies before the next
* SIGALRM is sent to the process due
* to an interval timer.
*/
unsigned long starttime; // %lu
/* The time in jiffies the process
* started after system boot.
*/
unsigned long vsize; // %lu
/* Virtual memory size in bytes.
*/
signed long rss; // %ld
/* Resident Set Size: number of pages
* the process has in real memory,
* minus 3 for administrative purposes.
* This is just the pages which count
* towards text, data, or stack space.
* This does not include pages which
* have not been demand-loaded in, or
* which are swapped out.
*/
unsigned long rlim; // %lu
/* Current limit in bytes on the rss of
* the process (usually 4,294,967,295).
*/
unsigned long startcode; // %lu
/* The address above which program text
* can run.
*/
unsigned long endcode; // %lu
/* The address below which program text
* can run.
*/
unsigned long startstack; // %lu
/* The address of the start of the
* stack.
*/
unsigned long kstkesp; // %lu
/* The current value of esp (stack
* pointer), as found in the kernel
* stack page for the process.
*/
unsigned long kstkeip; // %lu
/* The current EIP (instruction
* pointer).
*/
unsigned long signal; // %lu
/* The bitmap of pending signals (usu-
* ally 0).
*/
unsigned long blocked; // %lu
/* The bitmap of blocked signals (usu-
* ally 0, 2 for shells).
*/
unsigned long sigignore; // %lu
/* The bitmap of ignored signals.
*/
unsigned long sigcatch; // %lu
/* The bitmap of catched signals.
*/
unsigned long wchan; // %lu
/* This is the "channel" in which the
* process is waiting. It is the
* address of a system call, and can be
* looked up in a namelist if you need
* a textual name. (If you have an up-
* to-date /etc/psdatabase, then try ps
* -l to see the WCHAN field in
* action.)
*/
unsigned long nswap; // %lu
/* Number of pages swapped - not main-
* tained.
*/
unsigned long cnswap; // %lu
/* Cumulative nswap for child pro-
* cesses.
*/
int exit_signal; // %d
/* Signal to be sent to parent when we
* die.
*/
int processor; // %d
/* Processor number last executed on.
*/
} proc_stat_t;
static inline void proc_stat_dtor(void) { }
static inline void proc_stat_ctor(void) { }
void proc_stat_update(proc_stat_t *self, char *data);
int proc_stat_parse(proc_stat_t *self, const char *path);
void proc_stat_repr(proc_stat_t *self, FILE *file);
#ifdef __cplusplus
};
#endif
#endif // PROC_STAT_H_