blob: 7382f1f9e5f424b100ba1b7c8cd820dc55111673 [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/*
2 * Copyright (c) 2008, The Android Open Source Project
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
Elliott Hughes5922d3b2014-04-18 16:53:04 -070012 * the documentation and/or other materials provided with the
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080013 * distribution.
14 * * Neither the name of Google, Inc. nor the names of its contributors
15 * may be used to endorse or promote products derived from this
16 * software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
21 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
22 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
Elliott Hughes5922d3b2014-04-18 16:53:04 -070025 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
28 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32#include <ctype.h>
33#include <dirent.h>
34#include <grp.h>
35#include <pwd.h>
36#include <stdio.h>
37#include <stdlib.h>
38#include <string.h>
39#include <sys/types.h>
40#include <unistd.h>
41
San Mehat39274412009-10-27 11:53:22 -070042#include <cutils/sched_policy.h>
43
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080044struct cpu_info {
45 long unsigned utime, ntime, stime, itime;
46 long unsigned iowtime, irqtime, sirqtime;
47};
48
49#define PROC_NAME_LEN 64
50#define THREAD_NAME_LEN 32
Glenn Kasten86c7cc82012-03-05 16:14:39 -080051#define POLICY_NAME_LEN 4
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080052
53struct proc_info {
54 struct proc_info *next;
55 pid_t pid;
56 pid_t tid;
57 uid_t uid;
58 gid_t gid;
59 char name[PROC_NAME_LEN];
60 char tname[THREAD_NAME_LEN];
61 char state;
62 long unsigned utime;
63 long unsigned stime;
64 long unsigned delta_utime;
65 long unsigned delta_stime;
66 long unsigned delta_time;
67 long vss;
68 long rss;
Dmitry Shmidt43585442010-08-30 16:39:14 -070069 int prs;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080070 int num_threads;
Glenn Kasten86c7cc82012-03-05 16:14:39 -080071 char policy[POLICY_NAME_LEN];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080072};
73
74struct proc_list {
75 struct proc_info **array;
76 int size;
77};
78
79#define die(...) { fprintf(stderr, __VA_ARGS__); exit(EXIT_FAILURE); }
80
81#define INIT_PROCS 50
82#define THREAD_MULT 8
83static struct proc_info **old_procs, **new_procs;
84static int num_old_procs, num_new_procs;
85static struct proc_info *free_procs;
86static int num_used_procs, num_free_procs;
87
88static int max_procs, delay, iterations, threads;
89
90static struct cpu_info old_cpu, new_cpu;
91
92static struct proc_info *alloc_proc(void);
93static void free_proc(struct proc_info *proc);
94static void read_procs(void);
95static int read_stat(char *filename, struct proc_info *proc);
San Mehat39274412009-10-27 11:53:22 -070096static void read_policy(int pid, struct proc_info *proc);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080097static void add_proc(int proc_num, struct proc_info *proc);
98static int read_cmdline(char *filename, struct proc_info *proc);
99static int read_status(char *filename, struct proc_info *proc);
100static void print_procs(void);
101static struct proc_info *find_old_proc(pid_t pid, pid_t tid);
102static void free_old_procs(void);
103static int (*proc_cmp)(const void *a, const void *b);
104static int proc_cpu_cmp(const void *a, const void *b);
105static int proc_vss_cmp(const void *a, const void *b);
106static int proc_rss_cmp(const void *a, const void *b);
107static int proc_thr_cmp(const void *a, const void *b);
108static int numcmp(long long a, long long b);
109static void usage(char *cmd);
110
Elliott Hughes5922d3b2014-04-18 16:53:04 -0700111static void exit_top(int signal) {
112 exit(EXIT_FAILURE);
113}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800114
Elliott Hughes5922d3b2014-04-18 16:53:04 -0700115int top_main(int argc, char *argv[]) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800116 num_used_procs = num_free_procs = 0;
117
Elliott Hughes5922d3b2014-04-18 16:53:04 -0700118 signal(SIGPIPE, exit_top);
119
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800120 max_procs = 0;
121 delay = 3;
122 iterations = -1;
123 proc_cmp = &proc_cpu_cmp;
Elliott Hughes5922d3b2014-04-18 16:53:04 -0700124 for (int i = 1; i < argc; i++) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800125 if (!strcmp(argv[i], "-m")) {
126 if (i + 1 >= argc) {
127 fprintf(stderr, "Option -m expects an argument.\n");
128 usage(argv[0]);
129 exit(EXIT_FAILURE);
130 }
131 max_procs = atoi(argv[++i]);
132 continue;
133 }
134 if (!strcmp(argv[i], "-n")) {
135 if (i + 1 >= argc) {
136 fprintf(stderr, "Option -n expects an argument.\n");
137 usage(argv[0]);
138 exit(EXIT_FAILURE);
139 }
140 iterations = atoi(argv[++i]);
141 continue;
142 }
143 if (!strcmp(argv[i], "-d")) {
144 if (i + 1 >= argc) {
145 fprintf(stderr, "Option -d expects an argument.\n");
146 usage(argv[0]);
147 exit(EXIT_FAILURE);
148 }
149 delay = atoi(argv[++i]);
150 continue;
151 }
152 if (!strcmp(argv[i], "-s")) {
153 if (i + 1 >= argc) {
154 fprintf(stderr, "Option -s expects an argument.\n");
155 usage(argv[0]);
156 exit(EXIT_FAILURE);
157 }
158 ++i;
159 if (!strcmp(argv[i], "cpu")) { proc_cmp = &proc_cpu_cmp; continue; }
160 if (!strcmp(argv[i], "vss")) { proc_cmp = &proc_vss_cmp; continue; }
161 if (!strcmp(argv[i], "rss")) { proc_cmp = &proc_rss_cmp; continue; }
162 if (!strcmp(argv[i], "thr")) { proc_cmp = &proc_thr_cmp; continue; }
163 fprintf(stderr, "Invalid argument \"%s\" for option -s.\n", argv[i]);
164 exit(EXIT_FAILURE);
165 }
166 if (!strcmp(argv[i], "-t")) { threads = 1; continue; }
167 if (!strcmp(argv[i], "-h")) {
168 usage(argv[0]);
169 exit(EXIT_SUCCESS);
170 }
171 fprintf(stderr, "Invalid argument \"%s\".\n", argv[i]);
172 usage(argv[0]);
173 exit(EXIT_FAILURE);
174 }
175
176 if (threads && proc_cmp == &proc_thr_cmp) {
177 fprintf(stderr, "Sorting by threads per thread makes no sense!\n");
178 exit(EXIT_FAILURE);
179 }
180
181 free_procs = NULL;
182
183 num_new_procs = num_old_procs = 0;
184 new_procs = old_procs = NULL;
185
186 read_procs();
187 while ((iterations == -1) || (iterations-- > 0)) {
188 old_procs = new_procs;
189 num_old_procs = num_new_procs;
190 memcpy(&old_cpu, &new_cpu, sizeof(old_cpu));
191 sleep(delay);
192 read_procs();
193 print_procs();
194 free_old_procs();
195 }
196
197 return 0;
198}
199
200static struct proc_info *alloc_proc(void) {
201 struct proc_info *proc;
202
203 if (free_procs) {
204 proc = free_procs;
205 free_procs = free_procs->next;
206 num_free_procs--;
207 } else {
208 proc = malloc(sizeof(*proc));
209 if (!proc) die("Could not allocate struct process_info.\n");
210 }
211
212 num_used_procs++;
213
214 return proc;
215}
216
217static void free_proc(struct proc_info *proc) {
218 proc->next = free_procs;
219 free_procs = proc;
220
221 num_used_procs--;
222 num_free_procs++;
223}
224
225#define MAX_LINE 256
226
227static void read_procs(void) {
228 DIR *proc_dir, *task_dir;
229 struct dirent *pid_dir, *tid_dir;
230 char filename[64];
231 FILE *file;
232 int proc_num;
233 struct proc_info *proc;
234 pid_t pid, tid;
235
236 int i;
237
238 proc_dir = opendir("/proc");
239 if (!proc_dir) die("Could not open /proc.\n");
240
241 new_procs = calloc(INIT_PROCS * (threads ? THREAD_MULT : 1), sizeof(struct proc_info *));
242 num_new_procs = INIT_PROCS * (threads ? THREAD_MULT : 1);
243
244 file = fopen("/proc/stat", "r");
245 if (!file) die("Could not open /proc/stat.\n");
246 fscanf(file, "cpu %lu %lu %lu %lu %lu %lu %lu", &new_cpu.utime, &new_cpu.ntime, &new_cpu.stime,
247 &new_cpu.itime, &new_cpu.iowtime, &new_cpu.irqtime, &new_cpu.sirqtime);
248 fclose(file);
249
250 proc_num = 0;
251 while ((pid_dir = readdir(proc_dir))) {
252 if (!isdigit(pid_dir->d_name[0]))
253 continue;
254
255 pid = atoi(pid_dir->d_name);
Elliott Hughes5922d3b2014-04-18 16:53:04 -0700256
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800257 struct proc_info cur_proc;
Elliott Hughes5922d3b2014-04-18 16:53:04 -0700258
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800259 if (!threads) {
260 proc = alloc_proc();
261
262 proc->pid = proc->tid = pid;
263
264 sprintf(filename, "/proc/%d/stat", pid);
265 read_stat(filename, proc);
266
267 sprintf(filename, "/proc/%d/cmdline", pid);
268 read_cmdline(filename, proc);
269
270 sprintf(filename, "/proc/%d/status", pid);
271 read_status(filename, proc);
272
San Mehat39274412009-10-27 11:53:22 -0700273 read_policy(pid, proc);
274
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800275 proc->num_threads = 0;
276 } else {
277 sprintf(filename, "/proc/%d/cmdline", pid);
278 read_cmdline(filename, &cur_proc);
279
280 sprintf(filename, "/proc/%d/status", pid);
281 read_status(filename, &cur_proc);
Elliott Hughes5922d3b2014-04-18 16:53:04 -0700282
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800283 proc = NULL;
284 }
285
286 sprintf(filename, "/proc/%d/task", pid);
287 task_dir = opendir(filename);
288 if (!task_dir) continue;
289
290 while ((tid_dir = readdir(task_dir))) {
291 if (!isdigit(tid_dir->d_name[0]))
292 continue;
293
294 if (threads) {
295 tid = atoi(tid_dir->d_name);
296
297 proc = alloc_proc();
298
299 proc->pid = pid; proc->tid = tid;
300
301 sprintf(filename, "/proc/%d/task/%d/stat", pid, tid);
302 read_stat(filename, proc);
303
San Mehat39274412009-10-27 11:53:22 -0700304 read_policy(tid, proc);
305
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800306 strcpy(proc->name, cur_proc.name);
307 proc->uid = cur_proc.uid;
308 proc->gid = cur_proc.gid;
309
310 add_proc(proc_num++, proc);
311 } else {
312 proc->num_threads++;
313 }
314 }
315
316 closedir(task_dir);
Elliott Hughes5922d3b2014-04-18 16:53:04 -0700317
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800318 if (!threads)
319 add_proc(proc_num++, proc);
320 }
321
322 for (i = proc_num; i < num_new_procs; i++)
323 new_procs[i] = NULL;
324
325 closedir(proc_dir);
326}
327
328static int read_stat(char *filename, struct proc_info *proc) {
329 FILE *file;
330 char buf[MAX_LINE], *open_paren, *close_paren;
331 int res, idx;
332
333 file = fopen(filename, "r");
334 if (!file) return 1;
335 fgets(buf, MAX_LINE, file);
336 fclose(file);
337
338 /* Split at first '(' and last ')' to get process name. */
339 open_paren = strchr(buf, '(');
340 close_paren = strrchr(buf, ')');
341 if (!open_paren || !close_paren) return 1;
342
343 *open_paren = *close_paren = '\0';
344 strncpy(proc->tname, open_paren + 1, THREAD_NAME_LEN);
345 proc->tname[THREAD_NAME_LEN-1] = 0;
Elliott Hughes5922d3b2014-04-18 16:53:04 -0700346
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800347 /* Scan rest of string. */
348 sscanf(close_paren + 1, " %c %*d %*d %*d %*d %*d %*d %*d %*d %*d %*d "
Dmitry Shmidt43585442010-08-30 16:39:14 -0700349 "%lu %lu %*d %*d %*d %*d %*d %*d %*d %lu %ld "
350 "%*d %*d %*d %*d %*d %*d %*d %*d %*d %*d %*d %*d %*d %*d %d",
351 &proc->state, &proc->utime, &proc->stime, &proc->vss, &proc->rss, &proc->prs);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800352
353 return 0;
354}
355
356static void add_proc(int proc_num, struct proc_info *proc) {
357 int i;
358
359 if (proc_num >= num_new_procs) {
360 new_procs = realloc(new_procs, 2 * num_new_procs * sizeof(struct proc_info *));
361 if (!new_procs) die("Could not expand procs array.\n");
362 for (i = num_new_procs; i < 2 * num_new_procs; i++)
363 new_procs[i] = NULL;
364 num_new_procs = 2 * num_new_procs;
365 }
366 new_procs[proc_num] = proc;
367}
368
369static int read_cmdline(char *filename, struct proc_info *proc) {
370 FILE *file;
371 char line[MAX_LINE];
372
373 line[0] = '\0';
374 file = fopen(filename, "r");
375 if (!file) return 1;
376 fgets(line, MAX_LINE, file);
377 fclose(file);
378 if (strlen(line) > 0) {
379 strncpy(proc->name, line, PROC_NAME_LEN);
380 proc->name[PROC_NAME_LEN-1] = 0;
381 } else
382 proc->name[0] = 0;
383 return 0;
384}
385
San Mehat39274412009-10-27 11:53:22 -0700386static void read_policy(int pid, struct proc_info *proc) {
387 SchedPolicy p;
388 if (get_sched_policy(pid, &p) < 0)
Glenn Kasten86c7cc82012-03-05 16:14:39 -0800389 strlcpy(proc->policy, "unk", POLICY_NAME_LEN);
San Mehat39274412009-10-27 11:53:22 -0700390 else {
Glenn Kasten86c7cc82012-03-05 16:14:39 -0800391 strlcpy(proc->policy, get_sched_policy_name(p), POLICY_NAME_LEN);
392 proc->policy[2] = '\0';
San Mehat39274412009-10-27 11:53:22 -0700393 }
394}
395
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800396static int read_status(char *filename, struct proc_info *proc) {
397 FILE *file;
398 char line[MAX_LINE];
399 unsigned int uid, gid;
400
401 file = fopen(filename, "r");
402 if (!file) return 1;
403 while (fgets(line, MAX_LINE, file)) {
404 sscanf(line, "Uid: %u", &uid);
405 sscanf(line, "Gid: %u", &gid);
406 }
407 fclose(file);
408 proc->uid = uid; proc->gid = gid;
409 return 0;
410}
411
412static void print_procs(void) {
413 int i;
414 struct proc_info *old_proc, *proc;
415 long unsigned total_delta_time;
416 struct passwd *user;
417 struct group *group;
418 char *user_str, user_buf[20];
419 char *group_str, group_buf[20];
420
421 for (i = 0; i < num_new_procs; i++) {
422 if (new_procs[i]) {
423 old_proc = find_old_proc(new_procs[i]->pid, new_procs[i]->tid);
424 if (old_proc) {
425 new_procs[i]->delta_utime = new_procs[i]->utime - old_proc->utime;
426 new_procs[i]->delta_stime = new_procs[i]->stime - old_proc->stime;
427 } else {
428 new_procs[i]->delta_utime = 0;
429 new_procs[i]->delta_stime = 0;
430 }
431 new_procs[i]->delta_time = new_procs[i]->delta_utime + new_procs[i]->delta_stime;
432 }
433 }
434
435 total_delta_time = (new_cpu.utime + new_cpu.ntime + new_cpu.stime + new_cpu.itime
436 + new_cpu.iowtime + new_cpu.irqtime + new_cpu.sirqtime)
437 - (old_cpu.utime + old_cpu.ntime + old_cpu.stime + old_cpu.itime
438 + old_cpu.iowtime + old_cpu.irqtime + old_cpu.sirqtime);
439
440 qsort(new_procs, num_new_procs, sizeof(struct proc_info *), proc_cmp);
441
442 printf("\n\n\n");
443 printf("User %ld%%, System %ld%%, IOW %ld%%, IRQ %ld%%\n",
444 ((new_cpu.utime + new_cpu.ntime) - (old_cpu.utime + old_cpu.ntime)) * 100 / total_delta_time,
445 ((new_cpu.stime ) - (old_cpu.stime)) * 100 / total_delta_time,
446 ((new_cpu.iowtime) - (old_cpu.iowtime)) * 100 / total_delta_time,
447 ((new_cpu.irqtime + new_cpu.sirqtime)
448 - (old_cpu.irqtime + old_cpu.sirqtime)) * 100 / total_delta_time);
449 printf("User %ld + Nice %ld + Sys %ld + Idle %ld + IOW %ld + IRQ %ld + SIRQ %ld = %ld\n",
450 new_cpu.utime - old_cpu.utime,
451 new_cpu.ntime - old_cpu.ntime,
452 new_cpu.stime - old_cpu.stime,
453 new_cpu.itime - old_cpu.itime,
454 new_cpu.iowtime - old_cpu.iowtime,
455 new_cpu.irqtime - old_cpu.irqtime,
456 new_cpu.sirqtime - old_cpu.sirqtime,
457 total_delta_time);
458 printf("\n");
Elliott Hughes5922d3b2014-04-18 16:53:04 -0700459 if (!threads)
Dmitry Shmidt43585442010-08-30 16:39:14 -0700460 printf("%5s %2s %4s %1s %5s %7s %7s %3s %-8s %s\n", "PID", "PR", "CPU%", "S", "#THR", "VSS", "RSS", "PCY", "UID", "Name");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800461 else
Dmitry Shmidt43585442010-08-30 16:39:14 -0700462 printf("%5s %5s %2s %4s %1s %7s %7s %3s %-8s %-15s %s\n", "PID", "TID", "PR", "CPU%", "S", "VSS", "RSS", "PCY", "UID", "Thread", "Proc");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800463
464 for (i = 0; i < num_new_procs; i++) {
465 proc = new_procs[i];
466
467 if (!proc || (max_procs && (i >= max_procs)))
468 break;
469 user = getpwuid(proc->uid);
470 group = getgrgid(proc->gid);
471 if (user && user->pw_name) {
472 user_str = user->pw_name;
473 } else {
474 snprintf(user_buf, 20, "%d", proc->uid);
475 user_str = user_buf;
476 }
477 if (group && group->gr_name) {
478 group_str = group->gr_name;
479 } else {
480 snprintf(group_buf, 20, "%d", proc->gid);
481 group_str = group_buf;
482 }
Elliott Hughes5922d3b2014-04-18 16:53:04 -0700483 if (!threads)
Dmitry Shmidt43585442010-08-30 16:39:14 -0700484 printf("%5d %2d %3ld%% %c %5d %6ldK %6ldK %3s %-8.8s %s\n", proc->pid, proc->prs, proc->delta_time * 100 / total_delta_time, proc->state, proc->num_threads,
San Mehat39274412009-10-27 11:53:22 -0700485 proc->vss / 1024, proc->rss * getpagesize() / 1024, proc->policy, user_str, proc->name[0] != 0 ? proc->name : proc->tname);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800486 else
Dmitry Shmidt43585442010-08-30 16:39:14 -0700487 printf("%5d %5d %2d %3ld%% %c %6ldK %6ldK %3s %-8.8s %-15s %s\n", proc->pid, proc->tid, proc->prs, proc->delta_time * 100 / total_delta_time, proc->state,
San Mehat39274412009-10-27 11:53:22 -0700488 proc->vss / 1024, proc->rss * getpagesize() / 1024, proc->policy, user_str, proc->tname, proc->name);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800489 }
490}
491
492static struct proc_info *find_old_proc(pid_t pid, pid_t tid) {
493 int i;
494
495 for (i = 0; i < num_old_procs; i++)
496 if (old_procs[i] && (old_procs[i]->pid == pid) && (old_procs[i]->tid == tid))
497 return old_procs[i];
498
499 return NULL;
500}
501
502static void free_old_procs(void) {
503 int i;
504
505 for (i = 0; i < num_old_procs; i++)
506 if (old_procs[i])
507 free_proc(old_procs[i]);
508
509 free(old_procs);
510}
511
512static int proc_cpu_cmp(const void *a, const void *b) {
513 struct proc_info *pa, *pb;
514
515 pa = *((struct proc_info **)a); pb = *((struct proc_info **)b);
516
517 if (!pa && !pb) return 0;
518 if (!pa) return 1;
519 if (!pb) return -1;
520
521 return -numcmp(pa->delta_time, pb->delta_time);
522}
523
524static int proc_vss_cmp(const void *a, const void *b) {
525 struct proc_info *pa, *pb;
526
527 pa = *((struct proc_info **)a); pb = *((struct proc_info **)b);
528
529 if (!pa && !pb) return 0;
530 if (!pa) return 1;
531 if (!pb) return -1;
532
533 return -numcmp(pa->vss, pb->vss);
534}
535
536static int proc_rss_cmp(const void *a, const void *b) {
537 struct proc_info *pa, *pb;
538
539 pa = *((struct proc_info **)a); pb = *((struct proc_info **)b);
540
541 if (!pa && !pb) return 0;
542 if (!pa) return 1;
543 if (!pb) return -1;
544
545 return -numcmp(pa->rss, pb->rss);
546}
547
548static int proc_thr_cmp(const void *a, const void *b) {
549 struct proc_info *pa, *pb;
550
551 pa = *((struct proc_info **)a); pb = *((struct proc_info **)b);
552
553 if (!pa && !pb) return 0;
554 if (!pa) return 1;
555 if (!pb) return -1;
556
557 return -numcmp(pa->num_threads, pb->num_threads);
558}
559
560static int numcmp(long long a, long long b) {
561 if (a < b) return -1;
562 if (a > b) return 1;
563 return 0;
564}
565
566static void usage(char *cmd) {
567 fprintf(stderr, "Usage: %s [ -m max_procs ] [ -n iterations ] [ -d delay ] [ -s sort_column ] [ -t ] [ -h ]\n"
568 " -m num Maximum number of processes to display.\n"
569 " -n num Updates to show before exiting.\n"
570 " -d num Seconds to wait between updates.\n"
571 " -s col Column to sort by (cpu,vss,rss,thr).\n"
572 " -t Show threads instead of processes.\n"
573 " -h Display this help screen.\n",
574 cmd);
575}