Bernhard Reutner-Fischer | d9cf7ac | 2006-04-12 18:39:58 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 2 | /* |
| 3 | * A tiny 'top' utility. |
| 4 | * |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 5 | * This is written specifically for the linux /proc/<PID>/stat(m) |
| 6 | * files format. |
| 7 | |
| 8 | * This reads the PIDs of all processes and their status and shows |
| 9 | * the status of processes (first ones that fit to screen) at given |
| 10 | * intervals. |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 11 | * |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 12 | * NOTES: |
| 13 | * - At startup this changes to /proc, all the reads are then |
| 14 | * relative to that. |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 15 | * |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 16 | * (C) Eero Tamminen <oak at welho dot com> |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 17 | * |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 18 | * Rewritten by Vladimir Oleynik (C) 2002 <dzo@simtreas.ru> |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 19 | */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 20 | |
| 21 | /* Original code Copyrights */ |
| 22 | /* |
| 23 | * Copyright (c) 1992 Branko Lankester |
| 24 | * Copyright (c) 1992 Roger Binns |
| 25 | * Copyright (C) 1994-1996 Charles L. Blake. |
| 26 | * Copyright (C) 1992-1998 Michael K. Johnson |
| 27 | * May be distributed under the conditions of the |
| 28 | * GNU Library General Public License |
| 29 | */ |
| 30 | |
Bernhard Reutner-Fischer | e15d757 | 2006-06-02 20:56:16 +0000 | [diff] [blame] | 31 | #include "busybox.h" |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 32 | |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 33 | typedef int (*cmp_t)(procps_status_t *P, procps_status_t *Q); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 34 | |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 35 | static procps_status_t *top; /* Hehe */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 36 | static int ntop; |
Denis Vlasenko | c12f530 | 2006-10-06 09:49:47 +0000 | [diff] [blame] | 37 | #define OPT_BATCH_MODE (option_mask32 & 0x4) |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 38 | |
Mike Frysinger | 223b887 | 2005-07-30 09:42:05 +0000 | [diff] [blame] | 39 | #ifdef CONFIG_FEATURE_USE_TERMIOS |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 40 | static int pid_sort(procps_status_t *P, procps_status_t *Q) |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 41 | { |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 42 | return (Q->pid - P->pid); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 43 | } |
Mike Frysinger | 223b887 | 2005-07-30 09:42:05 +0000 | [diff] [blame] | 44 | #endif |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 45 | |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 46 | static int mem_sort(procps_status_t *P, procps_status_t *Q) |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 47 | { |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 48 | return (int)(Q->rss - P->rss); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 49 | } |
| 50 | |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 51 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 52 | |
| 53 | #define sort_depth 3 |
| 54 | static cmp_t sort_function[sort_depth]; |
| 55 | |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 56 | static int pcpu_sort(procps_status_t *P, procps_status_t *Q) |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 57 | { |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 58 | return (Q->pcpu - P->pcpu); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 59 | } |
| 60 | |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 61 | static int time_sort(procps_status_t *P, procps_status_t *Q) |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 62 | { |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 63 | return (int)((Q->stime + Q->utime) - (P->stime + P->utime)); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 64 | } |
| 65 | |
Eric Andersen | 14f5c8d | 2005-04-16 19:39:00 +0000 | [diff] [blame] | 66 | static int mult_lvl_cmp(void* a, void* b) { |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 67 | int i, cmp_val; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 68 | |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 69 | for (i = 0; i < sort_depth; i++) { |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 70 | cmp_val = (*sort_function[i])(a, b); |
| 71 | if (cmp_val != 0) |
| 72 | return cmp_val; |
| 73 | } |
| 74 | return 0; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | /* This structure stores some critical information from one frame to |
Denis Vlasenko | 42dfcd2 | 2006-09-09 12:55:02 +0000 | [diff] [blame] | 78 | the next. Mostly used for sorting. */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 79 | struct save_hist { |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 80 | int ticks; |
| 81 | int pid; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 82 | }; |
| 83 | |
| 84 | /* |
| 85 | * Calculates percent cpu usage for each task. |
| 86 | */ |
| 87 | |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 88 | static struct save_hist *prev_hist; |
| 89 | static int prev_hist_count; |
| 90 | /* static int hist_iterations; */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 91 | |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 92 | |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 93 | static unsigned total_pcpu; |
| 94 | /* static unsigned long total_rss; */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 95 | |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 96 | struct jiffy_counts { |
| 97 | unsigned long long usr,nic,sys,idle,iowait,irq,softirq,steal; |
| 98 | unsigned long long total; |
| 99 | unsigned long long busy; |
| 100 | }; |
| 101 | static struct jiffy_counts jif, prev_jif; |
| 102 | |
| 103 | static void get_jiffy_counts(void) |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 104 | { |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 105 | FILE* fp = xfopen("stat", "r"); |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 106 | prev_jif = jif; |
| 107 | if (fscanf(fp, "cpu %lld %lld %lld %lld %lld %lld %lld %lld", |
| 108 | &jif.usr,&jif.nic,&jif.sys,&jif.idle, |
| 109 | &jif.iowait,&jif.irq,&jif.softirq,&jif.steal) < 4) { |
Denis Vlasenko | 42dfcd2 | 2006-09-09 12:55:02 +0000 | [diff] [blame] | 110 | bb_error_msg_and_die("failed to read /proc/stat"); |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 111 | } |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 112 | fclose(fp); |
| 113 | jif.total = jif.usr + jif.nic + jif.sys + jif.idle |
| 114 | + jif.iowait + jif.irq + jif.softirq + jif.steal; |
| 115 | /* procps 2.x does not count iowait as busy time */ |
| 116 | jif.busy = jif.total - jif.idle - jif.iowait; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | static void do_stats(void) |
| 120 | { |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 121 | procps_status_t *cur; |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 122 | int pid, total_time, i, last_i, n; |
| 123 | struct save_hist *new_hist; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 124 | |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 125 | get_jiffy_counts(); |
| 126 | total_pcpu = 0; |
| 127 | /* total_rss = 0; */ |
| 128 | new_hist = xmalloc(sizeof(struct save_hist)*ntop); |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 129 | /* |
| 130 | * Make a pass through the data to get stats. |
| 131 | */ |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 132 | /* hist_iterations = 0; */ |
| 133 | i = 0; |
| 134 | for (n = 0; n < ntop; n++) { |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 135 | cur = top + n; |
| 136 | |
| 137 | /* |
| 138 | * Calculate time in cur process. Time is sum of user time |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 139 | * and system time |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 140 | */ |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 141 | pid = cur->pid; |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 142 | total_time = cur->stime + cur->utime; |
| 143 | new_hist[n].ticks = total_time; |
| 144 | new_hist[n].pid = pid; |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 145 | |
| 146 | /* find matching entry from previous pass */ |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 147 | cur->pcpu = 0; |
| 148 | /* do not start at index 0, continue at last used one |
| 149 | * (brought hist_iterations from ~14000 down to 172) */ |
| 150 | last_i = i; |
| 151 | if (prev_hist_count) do { |
| 152 | if (prev_hist[i].pid == pid) { |
| 153 | cur->pcpu = total_time - prev_hist[i].ticks; |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 154 | break; |
| 155 | } |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 156 | i = (i+1) % prev_hist_count; |
| 157 | /* hist_iterations++; */ |
| 158 | } while (i != last_i); |
| 159 | total_pcpu += cur->pcpu; |
| 160 | /* total_rss += cur->rss; */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | /* |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 164 | * Save cur frame's information. |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 165 | */ |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 166 | free(prev_hist); |
| 167 | prev_hist = new_hist; |
| 168 | prev_hist_count = ntop; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 169 | } |
| 170 | #else |
| 171 | static cmp_t sort_function; |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 172 | #endif /* CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 173 | |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 174 | /* display generic info (meminfo / loadavg) */ |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 175 | static unsigned long display_generic(int scr_width) |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 176 | { |
| 177 | FILE *fp; |
| 178 | char buf[80]; |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 179 | char scrbuf[80]; |
| 180 | char *end; |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 181 | unsigned long total, used, mfree, shared, buffers, cached; |
Eric Andersen | 7857c03 | 2003-10-11 18:47:20 +0000 | [diff] [blame] | 182 | unsigned int needs_conversion = 1; |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 183 | |
| 184 | /* read memory info */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 185 | fp = xfopen("meminfo", "r"); |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 186 | |
Eric Andersen | 7857c03 | 2003-10-11 18:47:20 +0000 | [diff] [blame] | 187 | /* |
| 188 | * Old kernels (such as 2.4.x) had a nice summary of memory info that |
| 189 | * we could parse, however this is gone entirely in 2.6. Try parsing |
| 190 | * the old way first, and if that fails, parse each field manually. |
| 191 | * |
| 192 | * First, we read in the first line. Old kernels will have bogus |
| 193 | * strings we don't care about, whereas new kernels will start right |
| 194 | * out with MemTotal: |
"Vladimir N. Oleynik" | 70678bc | 2005-11-29 12:32:33 +0000 | [diff] [blame] | 195 | * -- PFM. |
Eric Andersen | 7857c03 | 2003-10-11 18:47:20 +0000 | [diff] [blame] | 196 | */ |
| 197 | if (fscanf(fp, "MemTotal: %lu %s\n", &total, buf) != 2) { |
"Vladimir N. Oleynik" | 70678bc | 2005-11-29 12:32:33 +0000 | [diff] [blame] | 198 | fgets(buf, sizeof(buf), fp); /* skip first line */ |
Eric Andersen | 7857c03 | 2003-10-11 18:47:20 +0000 | [diff] [blame] | 199 | |
| 200 | fscanf(fp, "Mem: %lu %lu %lu %lu %lu %lu", |
| 201 | &total, &used, &mfree, &shared, &buffers, &cached); |
| 202 | } else { |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 203 | /* |
Eric Andersen | 7857c03 | 2003-10-11 18:47:20 +0000 | [diff] [blame] | 204 | * Revert to manual parsing, which incidentally already has the |
| 205 | * sizes in kilobytes. This should be safe for both 2.4 and |
| 206 | * 2.6. |
| 207 | */ |
| 208 | needs_conversion = 0; |
| 209 | |
| 210 | fscanf(fp, "MemFree: %lu %s\n", &mfree, buf); |
| 211 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 212 | /* |
Eric Andersen | 7857c03 | 2003-10-11 18:47:20 +0000 | [diff] [blame] | 213 | * MemShared: is no longer present in 2.6. Report this as 0, |
| 214 | * to maintain consistent behavior with normal procps. |
| 215 | */ |
| 216 | if (fscanf(fp, "MemShared: %lu %s\n", &shared, buf) != 2) |
| 217 | shared = 0; |
| 218 | |
| 219 | fscanf(fp, "Buffers: %lu %s\n", &buffers, buf); |
| 220 | fscanf(fp, "Cached: %lu %s\n", &cached, buf); |
| 221 | |
| 222 | used = total - mfree; |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 223 | } |
| 224 | fclose(fp); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 225 | |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 226 | /* read load average as a string */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 227 | fp = xfopen("loadavg", "r"); |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 228 | buf[0] = '\0'; |
| 229 | fgets(buf, sizeof(buf), fp); |
| 230 | end = strchr(buf, ' '); |
| 231 | if (end) end = strchr(end+1, ' '); |
| 232 | if (end) end = strchr(end+1, ' '); |
| 233 | if (end) *end = '\0'; |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 234 | fclose(fp); |
| 235 | |
Eric Andersen | 7857c03 | 2003-10-11 18:47:20 +0000 | [diff] [blame] | 236 | if (needs_conversion) { |
| 237 | /* convert to kilobytes */ |
| 238 | used /= 1024; |
| 239 | mfree /= 1024; |
| 240 | shared /= 1024; |
| 241 | buffers /= 1024; |
| 242 | cached /= 1024; |
| 243 | total /= 1024; |
| 244 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 245 | |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 246 | /* output memory info and load average */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 247 | /* clear screen & go to top */ |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 248 | if (scr_width > sizeof(scrbuf)) |
| 249 | scr_width = sizeof(scrbuf); |
| 250 | snprintf(scrbuf, scr_width, |
| 251 | "Mem: %ldK used, %ldK free, %ldK shrd, %ldK buff, %ldK cached", |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 252 | used, mfree, shared, buffers, cached); |
Denis Vlasenko | 266bc17 | 2006-09-29 17:16:39 +0000 | [diff] [blame] | 253 | |
| 254 | printf(OPT_BATCH_MODE ? "%s\n" : "\e[H\e[J%s\n", scrbuf); |
| 255 | |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 256 | snprintf(scrbuf, scr_width, |
Denis Vlasenko | 266bc17 | 2006-09-29 17:16:39 +0000 | [diff] [blame] | 257 | "Load average: %s", buf); |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 258 | printf("%s\n", scrbuf); |
| 259 | |
Eric Andersen | 7857c03 | 2003-10-11 18:47:20 +0000 | [diff] [blame] | 260 | return total; |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | |
| 264 | /* display process statuses */ |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 265 | static void display_status(int count, int scr_width) |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 266 | { |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 267 | enum { |
| 268 | bits_per_int = sizeof(int)*8 |
| 269 | }; |
| 270 | |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 271 | procps_status_t *s = top; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 272 | char rss_str_buf[8]; |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 273 | unsigned long total_memory = display_generic(scr_width); /* or use total_rss? */ |
| 274 | unsigned pmem_shift, pmem_scale; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 275 | |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 276 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 277 | unsigned pcpu_shift, pcpu_scale; |
| 278 | |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 279 | /* what info of the processes is shown */ |
Denis Vlasenko | 266bc17 | 2006-09-29 17:16:39 +0000 | [diff] [blame] | 280 | printf(OPT_BATCH_MODE ? "%.*s" : "\e[7m%.*s\e[0m", scr_width, |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 281 | " PID USER STATUS RSS PPID %CPU %MEM COMMAND"); |
| 282 | #define MIN_WIDTH \ |
| 283 | sizeof( " PID USER STATUS RSS PPID %CPU %MEM C") |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 284 | #else |
Denis Vlasenko | 266bc17 | 2006-09-29 17:16:39 +0000 | [diff] [blame] | 285 | printf(OPT_BATCH_MODE ? "%.*s" : "\e[7m%.*s\e[0m", scr_width, |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 286 | " PID USER STATUS RSS PPID %MEM COMMAND"); |
| 287 | #define MIN_WIDTH \ |
| 288 | sizeof( " PID USER STATUS RSS PPID %MEM C") |
| 289 | #endif |
| 290 | |
| 291 | /* |
| 292 | * MEM% = s->rss/MemTotal |
| 293 | */ |
| 294 | pmem_shift = bits_per_int-11; |
| 295 | pmem_scale = 1000*(1U<<(bits_per_int-11)) / total_memory; |
| 296 | /* s->rss is in kb. we want (s->rss * pmem_scale) to never overflow */ |
| 297 | while (pmem_scale >= 512) { |
| 298 | pmem_scale /= 4; |
| 299 | pmem_shift -= 2; |
| 300 | } |
| 301 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
| 302 | /* |
| 303 | * CPU% = s->pcpu/sum(s->pcpu) * busy_cpu_ticks/total_cpu_ticks |
| 304 | * (pcpu is delta of sys+user time between samples) |
| 305 | */ |
| 306 | /* (jif.xxx - prev_jif.xxx) and s->pcpu are |
| 307 | * in 0..~64000 range (HZ*update_interval). |
| 308 | * we assume that unsigned is at least 32-bit. |
| 309 | */ |
| 310 | pcpu_shift = 6; |
| 311 | pcpu_scale = (1000*64*(uint16_t)(jif.busy-prev_jif.busy) ? : 1); |
| 312 | while (pcpu_scale < (1U<<(bits_per_int-2))) { |
| 313 | pcpu_scale *= 4; |
| 314 | pcpu_shift += 2; |
| 315 | } |
| 316 | pcpu_scale /= ( (uint16_t)(jif.total-prev_jif.total)*total_pcpu ? : 1); |
| 317 | /* we want (s->pcpu * pcpu_scale) to never overflow */ |
| 318 | while (pcpu_scale >= 1024) { |
| 319 | pcpu_scale /= 4; |
| 320 | pcpu_shift -= 2; |
| 321 | } |
| 322 | /* printf(" pmem_scale=%u pcpu_scale=%u ", pmem_scale, pcpu_scale); */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 323 | #endif |
Denis Vlasenko | 266bc17 | 2006-09-29 17:16:39 +0000 | [diff] [blame] | 324 | if (OPT_BATCH_MODE) count--; |
| 325 | while (count-- > 0) { |
| 326 | div_t pmem = div((s->rss*pmem_scale) >> pmem_shift, 10); |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 327 | int col = scr_width+1; |
Bernhard Reutner-Fischer | e2922e4 | 2006-05-19 12:48:56 +0000 | [diff] [blame] | 328 | USE_FEATURE_TOP_CPU_USAGE_PERCENTAGE(div_t pcpu;) |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 329 | |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 330 | if (s->rss >= 100*1024) |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 331 | sprintf(rss_str_buf, "%6ldM", s->rss/1024); |
Manuel Novoa III | d499330 | 2002-09-18 19:27:10 +0000 | [diff] [blame] | 332 | else |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 333 | sprintf(rss_str_buf, "%7ld", s->rss); |
Bernhard Reutner-Fischer | e2922e4 | 2006-05-19 12:48:56 +0000 | [diff] [blame] | 334 | USE_FEATURE_TOP_CPU_USAGE_PERCENTAGE(pcpu = div((s->pcpu*pcpu_scale) >> pcpu_shift, 10);) |
Rob Landley | 0c43046 | 2006-05-04 19:51:22 +0000 | [diff] [blame] | 335 | col -= printf("\n%5d %-8s %s %s%6d%3u.%c" \ |
Bernhard Reutner-Fischer | e2922e4 | 2006-05-19 12:48:56 +0000 | [diff] [blame] | 336 | USE_FEATURE_TOP_CPU_USAGE_PERCENTAGE("%3u.%c") " ", |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 337 | s->pid, s->user, s->state, rss_str_buf, s->ppid, |
Rob Landley | 0c43046 | 2006-05-04 19:51:22 +0000 | [diff] [blame] | 338 | USE_FEATURE_TOP_CPU_USAGE_PERCENTAGE(pcpu.quot, '0'+pcpu.rem,) |
| 339 | pmem.quot, '0'+pmem.rem); |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 340 | if (col>0) |
| 341 | printf("%.*s", col, s->short_cmd); |
Bernhard Reutner-Fischer | e2922e4 | 2006-05-19 12:48:56 +0000 | [diff] [blame] | 342 | /* printf(" %d/%d %lld/%lld", s->pcpu, total_pcpu, |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 343 | jif.busy - prev_jif.busy, jif.total - prev_jif.total); */ |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 344 | s++; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 345 | } |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 346 | /* printf(" %d", hist_iterations); */ |
Denis Vlasenko | 266bc17 | 2006-09-29 17:16:39 +0000 | [diff] [blame] | 347 | putchar(OPT_BATCH_MODE ? '\n' : '\r'); |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 348 | fflush(stdout); |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 349 | } |
| 350 | |
| 351 | static void clearmems(void) |
| 352 | { |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 353 | free(top); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 354 | top = 0; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 355 | ntop = 0; |
| 356 | } |
| 357 | |
Mike Frysinger | 223b887 | 2005-07-30 09:42:05 +0000 | [diff] [blame] | 358 | #ifdef CONFIG_FEATURE_USE_TERMIOS |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 359 | #include <termios.h> |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 360 | #include <signal.h> |
| 361 | |
| 362 | |
| 363 | static struct termios initial_settings; |
| 364 | |
| 365 | static void reset_term(void) |
| 366 | { |
| 367 | tcsetattr(0, TCSANOW, (void *) &initial_settings); |
| 368 | #ifdef CONFIG_FEATURE_CLEAN_UP |
| 369 | clearmems(); |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 370 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 371 | free(prev_hist); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 372 | #endif |
| 373 | #endif /* CONFIG_FEATURE_CLEAN_UP */ |
| 374 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 375 | |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 376 | static void sig_catcher(int sig ATTRIBUTE_UNUSED) |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 377 | { |
| 378 | reset_term(); |
Rob Landley | db1ab1a | 2006-06-28 14:11:25 +0000 | [diff] [blame] | 379 | exit(1); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 380 | } |
| 381 | #endif /* CONFIG_FEATURE_USE_TERMIOS */ |
| 382 | |
| 383 | |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 384 | int top_main(int argc, char **argv) |
| 385 | { |
Denis Vlasenko | 266bc17 | 2006-09-29 17:16:39 +0000 | [diff] [blame] | 386 | int count, lines, col; |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 387 | unsigned interval = 5; /* default update rate is 5 seconds */ |
| 388 | unsigned iterations = UINT_MAX; /* 2^32 iterations by default :) */ |
Denis Vlasenko | 266bc17 | 2006-09-29 17:16:39 +0000 | [diff] [blame] | 389 | char *sinterval, *siterations; |
Mike Frysinger | 223b887 | 2005-07-30 09:42:05 +0000 | [diff] [blame] | 390 | #ifdef CONFIG_FEATURE_USE_TERMIOS |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 391 | struct termios new_settings; |
| 392 | struct timeval tv; |
| 393 | fd_set readfds; |
| 394 | unsigned char c; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 395 | #endif /* CONFIG_FEATURE_USE_TERMIOS */ |
| 396 | |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 397 | /* do normal option parsing */ |
Denis Vlasenko | 42dfcd2 | 2006-09-09 12:55:02 +0000 | [diff] [blame] | 398 | interval = 5; |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 399 | opt_complementary = "-"; |
Denis Vlasenko | c12f530 | 2006-10-06 09:49:47 +0000 | [diff] [blame] | 400 | getopt32(argc, argv, "d:n:b", |
Denis Vlasenko | 266bc17 | 2006-09-29 17:16:39 +0000 | [diff] [blame] | 401 | &sinterval, &siterations); |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 402 | if (option_mask32 & 0x1) interval = xatou(sinterval); // -d |
| 403 | if (option_mask32 & 0x2) iterations = xatou(siterations); // -n |
Denis Vlasenko | c12f530 | 2006-10-06 09:49:47 +0000 | [diff] [blame] | 404 | //if (option_mask32 & 0x4) // -b |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 405 | |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 406 | /* change to /proc */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 407 | xchdir("/proc"); |
Mike Frysinger | 223b887 | 2005-07-30 09:42:05 +0000 | [diff] [blame] | 408 | #ifdef CONFIG_FEATURE_USE_TERMIOS |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 409 | tcgetattr(0, (void *) &initial_settings); |
| 410 | memcpy(&new_settings, &initial_settings, sizeof(struct termios)); |
Denis Vlasenko | 42dfcd2 | 2006-09-09 12:55:02 +0000 | [diff] [blame] | 411 | /* unbuffered input, turn off echo */ |
| 412 | new_settings.c_lflag &= ~(ISIG | ICANON | ECHO | ECHONL); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 413 | |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 414 | signal(SIGTERM, sig_catcher); |
Rob Landley | db1ab1a | 2006-06-28 14:11:25 +0000 | [diff] [blame] | 415 | signal(SIGINT, sig_catcher); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 416 | tcsetattr(0, TCSANOW, (void *) &new_settings); |
| 417 | atexit(reset_term); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 418 | #endif /* CONFIG_FEATURE_USE_TERMIOS */ |
Mike Frysinger | 223b887 | 2005-07-30 09:42:05 +0000 | [diff] [blame] | 419 | |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 420 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 421 | sort_function[0] = pcpu_sort; |
| 422 | sort_function[1] = mem_sort; |
| 423 | sort_function[2] = time_sort; |
| 424 | #else |
| 425 | sort_function = mem_sort; |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 426 | #endif /* CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE */ |
Mike Frysinger | 223b887 | 2005-07-30 09:42:05 +0000 | [diff] [blame] | 427 | |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 428 | while (1) { |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 429 | procps_status_t *p; |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 430 | |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 431 | /* Default to 25 lines - 5 lines for status */ |
| 432 | lines = 24 - 3; |
| 433 | col = 79; |
| 434 | #ifdef CONFIG_FEATURE_USE_TERMIOS |
| 435 | get_terminal_width_height(0, &col, &lines); |
| 436 | if (lines < 5 || col < MIN_WIDTH) { |
| 437 | sleep(interval); |
| 438 | continue; |
| 439 | } |
| 440 | lines -= 3; |
| 441 | #endif /* CONFIG_FEATURE_USE_TERMIOS */ |
| 442 | |
| 443 | /* read process IDs & status for all the processes */ |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 444 | while ((p = procps_scan(0)) != 0) { |
| 445 | int n = ntop; |
| 446 | |
| 447 | top = xrealloc(top, (++ntop)*sizeof(procps_status_t)); |
| 448 | memcpy(top + n, p, sizeof(procps_status_t)); |
| 449 | } |
| 450 | if (ntop == 0) { |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 451 | bb_error_msg_and_die("Can't find process info in /proc"); |
| 452 | } |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 453 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 454 | if (!prev_hist_count) { |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 455 | do_stats(); |
| 456 | sleep(1); |
| 457 | clearmems(); |
| 458 | continue; |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 459 | } |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 460 | do_stats(); |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 461 | qsort(top, ntop, sizeof(procps_status_t), (void*)mult_lvl_cmp); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 462 | #else |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 463 | qsort(top, ntop, sizeof(procps_status_t), (void*)sort_function); |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 464 | #endif /* CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE */ |
Denis Vlasenko | 266bc17 | 2006-09-29 17:16:39 +0000 | [diff] [blame] | 465 | count = lines; |
| 466 | if (count > ntop) { |
| 467 | count = ntop; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 468 | } |
| 469 | /* show status for each of the processes */ |
Denis Vlasenko | 266bc17 | 2006-09-29 17:16:39 +0000 | [diff] [blame] | 470 | display_status(count, col); |
Mike Frysinger | 223b887 | 2005-07-30 09:42:05 +0000 | [diff] [blame] | 471 | #ifdef CONFIG_FEATURE_USE_TERMIOS |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 472 | tv.tv_sec = interval; |
| 473 | tv.tv_usec = 0; |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 474 | FD_ZERO(&readfds); |
| 475 | FD_SET(0, &readfds); |
| 476 | select(1, &readfds, NULL, NULL, &tv); |
| 477 | if (FD_ISSET(0, &readfds)) { |
| 478 | if (read(0, &c, 1) <= 0) { /* signal */ |
Mike Frysinger | 223b887 | 2005-07-30 09:42:05 +0000 | [diff] [blame] | 479 | return EXIT_FAILURE; |
| 480 | } |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 481 | if (c == 'q' || c == initial_settings.c_cc[VINTR]) |
"Vladimir N. Oleynik" | c218a29 | 2006-02-15 17:15:56 +0000 | [diff] [blame] | 482 | break; |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 483 | if (c == 'M') { |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 484 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 485 | sort_function[0] = mem_sort; |
| 486 | sort_function[1] = pcpu_sort; |
| 487 | sort_function[2] = time_sort; |
| 488 | #else |
| 489 | sort_function = mem_sort; |
| 490 | #endif |
| 491 | } |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 492 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 493 | if (c == 'P') { |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 494 | sort_function[0] = pcpu_sort; |
| 495 | sort_function[1] = mem_sort; |
| 496 | sort_function[2] = time_sort; |
| 497 | } |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 498 | if (c == 'T') { |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 499 | sort_function[0] = time_sort; |
| 500 | sort_function[1] = mem_sort; |
| 501 | sort_function[2] = pcpu_sort; |
| 502 | } |
| 503 | #endif |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 504 | if (c == 'N') { |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 505 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 506 | sort_function[0] = pid_sort; |
| 507 | #else |
| 508 | sort_function = pid_sort; |
| 509 | #endif |
| 510 | } |
| 511 | } |
Denis Vlasenko | 266bc17 | 2006-09-29 17:16:39 +0000 | [diff] [blame] | 512 | if (!--iterations) |
| 513 | break; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 514 | #else |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 515 | sleep(interval); |
Mike Frysinger | 223b887 | 2005-07-30 09:42:05 +0000 | [diff] [blame] | 516 | #endif /* CONFIG_FEATURE_USE_TERMIOS */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 517 | clearmems(); |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 518 | } |
Rob Landley | 997650b | 2006-04-24 23:13:46 +0000 | [diff] [blame] | 519 | if (ENABLE_FEATURE_CLEAN_UP) |
"Vladimir N. Oleynik" | c218a29 | 2006-02-15 17:15:56 +0000 | [diff] [blame] | 520 | clearmems(); |
| 521 | putchar('\n'); |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 522 | return EXIT_SUCCESS; |
| 523 | } |