Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 1 | /* |
| 2 | * A tiny 'top' utility. |
| 3 | * |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 4 | * This is written specifically for the linux /proc/<PID>/stat(m) |
| 5 | * files format. |
| 6 | |
| 7 | * This reads the PIDs of all processes and their status and shows |
| 8 | * the status of processes (first ones that fit to screen) at given |
| 9 | * intervals. |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 10 | * |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 11 | * NOTES: |
| 12 | * - At startup this changes to /proc, all the reads are then |
| 13 | * relative to that. |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 14 | * |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 15 | * (C) Eero Tamminen <oak at welho dot com> |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 16 | * |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 17 | * Rewritten by Vladimir Oleynik (C) 2002 <dzo@simtreas.ru> |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 18 | */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 19 | |
| 20 | /* Original code Copyrights */ |
| 21 | /* |
| 22 | * Copyright (c) 1992 Branko Lankester |
| 23 | * Copyright (c) 1992 Roger Binns |
| 24 | * Copyright (C) 1994-1996 Charles L. Blake. |
| 25 | * Copyright (C) 1992-1998 Michael K. Johnson |
| 26 | * May be distributed under the conditions of the |
| 27 | * GNU Library General Public License |
| 28 | */ |
| 29 | |
| 30 | #include <sys/types.h> |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 31 | #include <stdio.h> |
| 32 | #include <stdlib.h> |
| 33 | #include <unistd.h> |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 34 | #include <string.h> |
| 35 | #include <sys/ioctl.h> |
| 36 | #include "busybox.h" |
| 37 | |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 38 | //#define CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE /* + 2k */ |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 39 | |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 40 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 41 | #include <time.h> |
| 42 | #include <sys/time.h> |
| 43 | #include <fcntl.h> |
| 44 | #include <netinet/in.h> /* htons */ |
| 45 | #endif |
| 46 | |
| 47 | |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 48 | typedef int (*cmp_t)(procps_status_t *P, procps_status_t *Q); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 49 | |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 50 | static procps_status_t *top; /* Hehe */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 51 | static int ntop; |
| 52 | |
Mike Frysinger | 223b887 | 2005-07-30 09:42:05 +0000 | [diff] [blame] | 53 | #ifdef CONFIG_FEATURE_USE_TERMIOS |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 54 | static int pid_sort (procps_status_t *P, procps_status_t *Q) |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 55 | { |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 56 | return (Q->pid - P->pid); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 57 | } |
Mike Frysinger | 223b887 | 2005-07-30 09:42:05 +0000 | [diff] [blame] | 58 | #endif |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 59 | |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 60 | static int mem_sort (procps_status_t *P, procps_status_t *Q) |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 61 | { |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 62 | return (int)(Q->rss - P->rss); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 63 | } |
| 64 | |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 65 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 66 | |
| 67 | #define sort_depth 3 |
| 68 | static cmp_t sort_function[sort_depth]; |
| 69 | |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 70 | static int pcpu_sort (procps_status_t *P, procps_status_t *Q) |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 71 | { |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 72 | return (Q->pcpu - P->pcpu); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 73 | } |
| 74 | |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 75 | static int time_sort (procps_status_t *P, procps_status_t *Q) |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 76 | { |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 77 | return (int)((Q->stime + Q->utime) - (P->stime + P->utime)); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 78 | } |
| 79 | |
Eric Andersen | 14f5c8d | 2005-04-16 19:39:00 +0000 | [diff] [blame] | 80 | static int mult_lvl_cmp(void* a, void* b) { |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 81 | int i, cmp_val; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 82 | |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 83 | for(i = 0; i < sort_depth; i++) { |
| 84 | cmp_val = (*sort_function[i])(a, b); |
| 85 | if (cmp_val != 0) |
| 86 | return cmp_val; |
| 87 | } |
| 88 | return 0; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | /* This structure stores some critical information from one frame to |
| 92 | the next. mostly used for sorting. Added cumulative and resident fields. */ |
| 93 | struct save_hist { |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 94 | int ticks; |
| 95 | int pid; |
| 96 | int utime; |
| 97 | int stime; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 98 | }; |
| 99 | |
| 100 | /* |
| 101 | * Calculates percent cpu usage for each task. |
| 102 | */ |
| 103 | |
| 104 | static struct save_hist *save_history; |
| 105 | |
| 106 | static unsigned long Hertz; |
| 107 | |
| 108 | /*********************************************************************** |
| 109 | * Some values in /proc are expressed in units of 1/HZ seconds, where HZ |
| 110 | * is the kernel clock tick rate. One of these units is called a jiffy. |
| 111 | * The HZ value used in the kernel may vary according to hacker desire. |
| 112 | * According to Linus Torvalds, this is not true. He considers the values |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 113 | * in /proc as being in architecture-dependent units that have no relation |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 114 | * to the kernel clock tick rate. Examination of the kernel source code |
| 115 | * reveals that opinion as wishful thinking. |
| 116 | * |
| 117 | * In any case, we need the HZ constant as used in /proc. (the real HZ value |
| 118 | * may differ, but we don't care) There are several ways we could get HZ: |
| 119 | * |
| 120 | * 1. Include the kernel header file. If it changes, recompile this library. |
| 121 | * 2. Use the sysconf() function. When HZ changes, recompile the C library! |
| 122 | * 3. Ask the kernel. This is obviously correct... |
| 123 | * |
| 124 | * Linus Torvalds won't let us ask the kernel, because he thinks we should |
| 125 | * not know the HZ value. Oh well, we don't have to listen to him. |
| 126 | * Someone smuggled out the HZ value. :-) |
| 127 | * |
| 128 | * This code should work fine, even if Linus fixes the kernel to match his |
| 129 | * stated behavior. The code only fails in case of a partial conversion. |
| 130 | * |
| 131 | */ |
| 132 | |
"Vladimir N. Oleynik" | 3afdfec | 2006-02-14 10:36:38 +0000 | [diff] [blame^] | 133 | #define file_to_buf_bufsize 80 |
| 134 | static inline int file_to_buf(char *buf, const char *filename, int fd) |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 135 | { |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 136 | int sz; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 137 | |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 138 | if (fd == -1) { |
| 139 | fd = open(filename, O_RDONLY); |
| 140 | if(fd == -1) |
| 141 | bb_perror_msg_and_die("is /proc mounted?"); |
| 142 | } else { |
| 143 | lseek(fd, 0L, SEEK_SET); |
| 144 | } |
"Vladimir N. Oleynik" | 3afdfec | 2006-02-14 10:36:38 +0000 | [diff] [blame^] | 145 | sz = read(fd, buf, file_to_buf_bufsize - 1); |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 146 | if (sz < 0) { |
| 147 | bb_perror_msg_and_die("%s", filename); |
| 148 | } |
| 149 | buf[sz] = '\0'; |
"Vladimir N. Oleynik" | 3afdfec | 2006-02-14 10:36:38 +0000 | [diff] [blame^] | 150 | return fd; |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 151 | } |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 152 | |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 153 | static void init_Hertz_value(void) |
| 154 | { |
| 155 | unsigned long user_j, nice_j, sys_j, other_j; /* jiffies (clock ticks) */ |
| 156 | double up_1, up_2, seconds; |
| 157 | unsigned long jiffies, h; |
| 158 | char buf[80]; |
| 159 | int uptime_fd = -1; |
| 160 | int stat_fd = -1; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 161 | |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 162 | long smp_num_cpus = sysconf(_SC_NPROCESSORS_CONF); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 163 | |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 164 | if(smp_num_cpus<1) smp_num_cpus=1; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 165 | |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 166 | do { |
"Vladimir N. Oleynik" | 3afdfec | 2006-02-14 10:36:38 +0000 | [diff] [blame^] | 167 | uptime_fd = file_to_buf(buf, "uptime", uptime_fd); |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 168 | up_1 = strtod(buf, 0); |
"Vladimir N. Oleynik" | 3afdfec | 2006-02-14 10:36:38 +0000 | [diff] [blame^] | 169 | stat_fd = file_to_buf(buf, "stat", stat_fd); |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 170 | sscanf(buf, "cpu %lu %lu %lu %lu", &user_j, &nice_j, &sys_j, &other_j); |
"Vladimir N. Oleynik" | 3afdfec | 2006-02-14 10:36:38 +0000 | [diff] [blame^] | 171 | uptime_fd = file_to_buf(buf, "uptime", uptime_fd); |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 172 | up_2 = strtod(buf, 0); |
| 173 | } while((long)( (up_2-up_1)*1000.0/up_1 )); /* want under 0.1% error */ |
| 174 | close(uptime_fd); |
| 175 | close(stat_fd); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 176 | |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 177 | jiffies = user_j + nice_j + sys_j + other_j; |
| 178 | seconds = (up_1 + up_2) / 2; |
| 179 | h = (unsigned long)( (double)jiffies/seconds/smp_num_cpus ); |
| 180 | /* actual values used by 2.4 kernels: 32 64 100 128 1000 1024 1200 */ |
| 181 | switch(h) { |
| 182 | case 30 ... 34 : Hertz = 32; break; /* ia64 emulator */ |
| 183 | case 48 ... 52 : Hertz = 50; break; |
| 184 | case 58 ... 62 : Hertz = 60; break; |
| 185 | case 63 ... 65 : Hertz = 64; break; /* StrongARM /Shark */ |
| 186 | case 95 ... 105 : Hertz = 100; break; /* normal Linux */ |
| 187 | case 124 ... 132 : Hertz = 128; break; /* MIPS, ARM */ |
| 188 | case 195 ... 204 : Hertz = 200; break; /* normal << 1 */ |
| 189 | case 253 ... 260 : Hertz = 256; break; |
| 190 | case 295 ... 304 : Hertz = 300; break; /* 3 cpus */ |
| 191 | case 393 ... 408 : Hertz = 400; break; /* normal << 2 */ |
| 192 | case 495 ... 504 : Hertz = 500; break; /* 5 cpus */ |
| 193 | case 595 ... 604 : Hertz = 600; break; /* 6 cpus */ |
| 194 | case 695 ... 704 : Hertz = 700; break; /* 7 cpus */ |
| 195 | case 790 ... 808 : Hertz = 800; break; /* normal << 3 */ |
| 196 | case 895 ... 904 : Hertz = 900; break; /* 9 cpus */ |
| 197 | case 990 ... 1010 : Hertz = 1000; break; /* ARM */ |
| 198 | case 1015 ... 1035 : Hertz = 1024; break; /* Alpha, ia64 */ |
| 199 | case 1095 ... 1104 : Hertz = 1100; break; /* 11 cpus */ |
| 200 | case 1180 ... 1220 : Hertz = 1200; break; /* Alpha */ |
| 201 | default: |
| 202 | /* If 32-bit or big-endian (not Alpha or ia64), assume HZ is 100. */ |
| 203 | Hertz = (sizeof(long)==sizeof(int) || htons(999)==999) ? 100UL : 1024UL; |
| 204 | } |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | static void do_stats(void) |
| 208 | { |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 209 | struct timeval t; |
| 210 | static struct timeval oldtime; |
| 211 | struct timezone timez; |
| 212 | float elapsed_time; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 213 | |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 214 | procps_status_t *cur; |
| 215 | int total_time, i, n; |
| 216 | static int prev_count; |
| 217 | int systime, usrtime, pid; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 218 | |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 219 | struct save_hist *New_save_hist; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 220 | |
| 221 | /* |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 222 | * Finds the current time (in microseconds) and calculates the time |
| 223 | * elapsed since the last update. |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 224 | */ |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 225 | gettimeofday(&t, &timez); |
| 226 | elapsed_time = (t.tv_sec - oldtime.tv_sec) |
| 227 | + (float) (t.tv_usec - oldtime.tv_usec) / 1000000.0; |
| 228 | oldtime.tv_sec = t.tv_sec; |
| 229 | oldtime.tv_usec = t.tv_usec; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 230 | |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 231 | New_save_hist = alloca(sizeof(struct save_hist)*ntop); |
| 232 | /* |
| 233 | * Make a pass through the data to get stats. |
| 234 | */ |
| 235 | for(n = 0; n < ntop; n++) { |
| 236 | cur = top + n; |
| 237 | |
| 238 | /* |
| 239 | * Calculate time in cur process. Time is sum of user time |
| 240 | * (usrtime) plus system time (systime). |
| 241 | */ |
| 242 | systime = cur->stime; |
| 243 | usrtime = cur->utime; |
| 244 | pid = cur->pid; |
| 245 | total_time = systime + usrtime; |
| 246 | New_save_hist[n].ticks = total_time; |
| 247 | New_save_hist[n].pid = pid; |
| 248 | New_save_hist[n].stime = systime; |
| 249 | New_save_hist[n].utime = usrtime; |
| 250 | |
| 251 | /* find matching entry from previous pass */ |
| 252 | for (i = 0; i < prev_count; i++) { |
| 253 | if (save_history[i].pid == pid) { |
| 254 | total_time -= save_history[i].ticks; |
| 255 | systime -= save_history[i].stime; |
| 256 | usrtime -= save_history[i].utime; |
| 257 | break; |
| 258 | } |
| 259 | } |
| 260 | |
| 261 | /* |
| 262 | * Calculate percent cpu time for cur task. |
| 263 | */ |
| 264 | i = (total_time * 10 * 100/Hertz) / elapsed_time; |
| 265 | if (i > 999) |
| 266 | i = 999; |
| 267 | cur->pcpu = i; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 268 | } |
| 269 | |
| 270 | /* |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 271 | * Save cur frame's information. |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 272 | */ |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 273 | free(save_history); |
| 274 | save_history = memcpy(xmalloc(sizeof(struct save_hist)*n), New_save_hist, |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 275 | sizeof(struct save_hist)*n); |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 276 | prev_count = n; |
| 277 | qsort(top, n, sizeof(procps_status_t), (void*)mult_lvl_cmp); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 278 | } |
| 279 | #else |
| 280 | static cmp_t sort_function; |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 281 | #endif /* CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 282 | |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 283 | /* display generic info (meminfo / loadavg) */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 284 | static unsigned long display_generic(void) |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 285 | { |
| 286 | FILE *fp; |
| 287 | char buf[80]; |
| 288 | float avg1, avg2, avg3; |
| 289 | unsigned long total, used, mfree, shared, buffers, cached; |
Eric Andersen | 7857c03 | 2003-10-11 18:47:20 +0000 | [diff] [blame] | 290 | unsigned int needs_conversion = 1; |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 291 | |
| 292 | /* read memory info */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 293 | fp = bb_xfopen("meminfo", "r"); |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 294 | |
Eric Andersen | 7857c03 | 2003-10-11 18:47:20 +0000 | [diff] [blame] | 295 | /* |
| 296 | * Old kernels (such as 2.4.x) had a nice summary of memory info that |
| 297 | * we could parse, however this is gone entirely in 2.6. Try parsing |
| 298 | * the old way first, and if that fails, parse each field manually. |
| 299 | * |
| 300 | * First, we read in the first line. Old kernels will have bogus |
| 301 | * strings we don't care about, whereas new kernels will start right |
| 302 | * out with MemTotal: |
"Vladimir N. Oleynik" | 70678bc | 2005-11-29 12:32:33 +0000 | [diff] [blame] | 303 | * -- PFM. |
Eric Andersen | 7857c03 | 2003-10-11 18:47:20 +0000 | [diff] [blame] | 304 | */ |
| 305 | if (fscanf(fp, "MemTotal: %lu %s\n", &total, buf) != 2) { |
"Vladimir N. Oleynik" | 70678bc | 2005-11-29 12:32:33 +0000 | [diff] [blame] | 306 | fgets(buf, sizeof(buf), fp); /* skip first line */ |
Eric Andersen | 7857c03 | 2003-10-11 18:47:20 +0000 | [diff] [blame] | 307 | |
| 308 | fscanf(fp, "Mem: %lu %lu %lu %lu %lu %lu", |
| 309 | &total, &used, &mfree, &shared, &buffers, &cached); |
| 310 | } else { |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 311 | /* |
Eric Andersen | 7857c03 | 2003-10-11 18:47:20 +0000 | [diff] [blame] | 312 | * Revert to manual parsing, which incidentally already has the |
| 313 | * sizes in kilobytes. This should be safe for both 2.4 and |
| 314 | * 2.6. |
| 315 | */ |
| 316 | needs_conversion = 0; |
| 317 | |
| 318 | fscanf(fp, "MemFree: %lu %s\n", &mfree, buf); |
| 319 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 320 | /* |
Eric Andersen | 7857c03 | 2003-10-11 18:47:20 +0000 | [diff] [blame] | 321 | * MemShared: is no longer present in 2.6. Report this as 0, |
| 322 | * to maintain consistent behavior with normal procps. |
| 323 | */ |
| 324 | if (fscanf(fp, "MemShared: %lu %s\n", &shared, buf) != 2) |
| 325 | shared = 0; |
| 326 | |
| 327 | fscanf(fp, "Buffers: %lu %s\n", &buffers, buf); |
| 328 | fscanf(fp, "Cached: %lu %s\n", &cached, buf); |
| 329 | |
| 330 | used = total - mfree; |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 331 | } |
| 332 | fclose(fp); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 333 | |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 334 | /* read load average */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 335 | fp = bb_xfopen("loadavg", "r"); |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 336 | if (fscanf(fp, "%f %f %f", &avg1, &avg2, &avg3) != 3) { |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 337 | bb_error_msg_and_die("failed to read 'loadavg'"); |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 338 | } |
| 339 | fclose(fp); |
| 340 | |
Eric Andersen | 7857c03 | 2003-10-11 18:47:20 +0000 | [diff] [blame] | 341 | if (needs_conversion) { |
| 342 | /* convert to kilobytes */ |
| 343 | used /= 1024; |
| 344 | mfree /= 1024; |
| 345 | shared /= 1024; |
| 346 | buffers /= 1024; |
| 347 | cached /= 1024; |
| 348 | total /= 1024; |
| 349 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 350 | |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 351 | /* output memory info and load average */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 352 | /* clear screen & go to top */ |
| 353 | printf("\e[H\e[J" "Mem: " |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 354 | "%ldK used, %ldK free, %ldK shrd, %ldK buff, %ldK cached\n", |
| 355 | used, mfree, shared, buffers, cached); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 356 | printf("Load average: %.2f, %.2f, %.2f " |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 357 | "(State: S=sleeping R=running, W=waiting)\n", |
| 358 | avg1, avg2, avg3); |
Eric Andersen | 7857c03 | 2003-10-11 18:47:20 +0000 | [diff] [blame] | 359 | return total; |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 360 | } |
| 361 | |
| 362 | |
| 363 | /* display process statuses */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 364 | static void display_status(int count, int col) |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 365 | { |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 366 | procps_status_t *s = top; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 367 | char rss_str_buf[8]; |
| 368 | unsigned long total_memory = display_generic(); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 369 | |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 370 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 371 | /* what info of the processes is shown */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 372 | printf("\n\e[7m PID USER STATUS RSS PPID %%CPU %%MEM COMMAND\e[0m\n"); |
| 373 | #else |
| 374 | printf("\n\e[7m PID USER STATUS RSS PPID %%MEM COMMAND\e[0m\n"); |
| 375 | #endif |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 376 | |
| 377 | while (count--) { |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 378 | char *namecmd = s->short_cmd; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 379 | int pmem; |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 380 | |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 381 | pmem = 1000.0 * s->rss / total_memory; |
| 382 | if (pmem > 999) pmem = 999; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 383 | |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 384 | if(s->rss > 10*1024) |
| 385 | sprintf(rss_str_buf, "%6ldM", s->rss/1024); |
Manuel Novoa III | d499330 | 2002-09-18 19:27:10 +0000 | [diff] [blame] | 386 | else |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 387 | sprintf(rss_str_buf, "%7ld", s->rss); |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 388 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
Glenn L McGrath | f6bba3d | 2003-12-08 20:31:25 +0000 | [diff] [blame] | 389 | printf("%5d %-8s %s %s %5d %2d.%d %2u.%u ", |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 390 | s->pid, s->user, s->state, rss_str_buf, s->ppid, |
Glenn L McGrath | f6bba3d | 2003-12-08 20:31:25 +0000 | [diff] [blame] | 391 | s->pcpu/10, s->pcpu%10, pmem/10, pmem%10); |
| 392 | #else |
| 393 | printf("%5d %-8s %s %s %5d %2u.%u ", |
| 394 | s->pid, s->user, s->state, rss_str_buf, s->ppid, |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 395 | pmem/10, pmem%10); |
Glenn L McGrath | f6bba3d | 2003-12-08 20:31:25 +0000 | [diff] [blame] | 396 | #endif |
"Vladimir N. Oleynik" | 51bfa54 | 2006-01-30 13:58:34 +0000 | [diff] [blame] | 397 | if((int)strlen(namecmd) > col) |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 398 | namecmd[col] = 0; |
| 399 | printf("%s\n", namecmd); |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 400 | s++; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 401 | } |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 402 | } |
| 403 | |
| 404 | static void clearmems(void) |
| 405 | { |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 406 | free(top); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 407 | top = 0; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 408 | ntop = 0; |
| 409 | } |
| 410 | |
Mike Frysinger | 223b887 | 2005-07-30 09:42:05 +0000 | [diff] [blame] | 411 | #ifdef CONFIG_FEATURE_USE_TERMIOS |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 412 | #include <termios.h> |
| 413 | #include <sys/time.h> |
| 414 | #include <signal.h> |
| 415 | |
| 416 | |
| 417 | static struct termios initial_settings; |
| 418 | |
| 419 | static void reset_term(void) |
| 420 | { |
| 421 | tcsetattr(0, TCSANOW, (void *) &initial_settings); |
| 422 | #ifdef CONFIG_FEATURE_CLEAN_UP |
| 423 | clearmems(); |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 424 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 425 | free(save_history); |
| 426 | #endif |
| 427 | #endif /* CONFIG_FEATURE_CLEAN_UP */ |
| 428 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 429 | |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 430 | static void sig_catcher(int sig ATTRIBUTE_UNUSED) |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 431 | { |
| 432 | reset_term(); |
| 433 | } |
| 434 | #endif /* CONFIG_FEATURE_USE_TERMIOS */ |
| 435 | |
| 436 | |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 437 | int top_main(int argc, char **argv) |
| 438 | { |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 439 | int opt, interval, lines, col; |
"Vladimir N. Oleynik" | 70678bc | 2005-11-29 12:32:33 +0000 | [diff] [blame] | 440 | char *sinterval; |
Mike Frysinger | 223b887 | 2005-07-30 09:42:05 +0000 | [diff] [blame] | 441 | #ifdef CONFIG_FEATURE_USE_TERMIOS |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 442 | struct termios new_settings; |
| 443 | struct timeval tv; |
| 444 | fd_set readfds; |
| 445 | unsigned char c; |
| 446 | struct sigaction sa; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 447 | #endif /* CONFIG_FEATURE_USE_TERMIOS */ |
| 448 | |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 449 | /* do normal option parsing */ |
"Vladimir N. Oleynik" | 70678bc | 2005-11-29 12:32:33 +0000 | [diff] [blame] | 450 | opt = bb_getopt_ulflags(argc, argv, "d:", &sinterval); |
| 451 | if((opt & 1)) { |
| 452 | interval = atoi(sinterval); |
| 453 | } else { |
| 454 | /* Default update rate is 5 seconds */ |
| 455 | interval = 5; |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 456 | } |
| 457 | |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 458 | /* Default to 25 lines - 5 lines for status */ |
| 459 | lines = 25 - 5; |
| 460 | /* Default CMD format size */ |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 461 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 462 | col = 35 - 6; |
| 463 | #else |
| 464 | col = 35; |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 465 | #endif |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 466 | /* change to /proc */ |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 467 | if (chdir("/proc") < 0) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 468 | bb_perror_msg_and_die("chdir('/proc')"); |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 469 | } |
Mike Frysinger | 223b887 | 2005-07-30 09:42:05 +0000 | [diff] [blame] | 470 | #ifdef CONFIG_FEATURE_USE_TERMIOS |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 471 | tcgetattr(0, (void *) &initial_settings); |
| 472 | memcpy(&new_settings, &initial_settings, sizeof(struct termios)); |
| 473 | new_settings.c_lflag &= ~(ISIG | ICANON); /* unbuffered input */ |
| 474 | /* Turn off echoing */ |
| 475 | new_settings.c_lflag &= ~(ECHO | ECHONL); |
| 476 | |
| 477 | signal (SIGTERM, sig_catcher); |
| 478 | sigaction (SIGTERM, (struct sigaction *) 0, &sa); |
| 479 | sa.sa_flags |= SA_RESTART; |
| 480 | sa.sa_flags &= ~SA_INTERRUPT; |
| 481 | sigaction (SIGTERM, &sa, (struct sigaction *) 0); |
| 482 | sigaction (SIGINT, &sa, (struct sigaction *) 0); |
| 483 | tcsetattr(0, TCSANOW, (void *) &new_settings); |
| 484 | atexit(reset_term); |
Eric Andersen | 8efe967 | 2003-09-15 08:33:45 +0000 | [diff] [blame] | 485 | |
| 486 | get_terminal_width_height(0, &col, &lines); |
| 487 | if (lines > 4) { |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 488 | lines -= 5; |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 489 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 490 | col = col - 80 + 35 - 6; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 491 | #else |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 492 | col = col - 80 + 35; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 493 | #endif |
| 494 | } |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 495 | #endif /* CONFIG_FEATURE_USE_TERMIOS */ |
Mike Frysinger | 223b887 | 2005-07-30 09:42:05 +0000 | [diff] [blame] | 496 | |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 497 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 498 | sort_function[0] = pcpu_sort; |
| 499 | sort_function[1] = mem_sort; |
| 500 | sort_function[2] = time_sort; |
| 501 | #else |
| 502 | sort_function = mem_sort; |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 503 | #endif /* CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE */ |
Mike Frysinger | 223b887 | 2005-07-30 09:42:05 +0000 | [diff] [blame] | 504 | |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 505 | while (1) { |
| 506 | /* read process IDs & status for all the processes */ |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 507 | procps_status_t * p; |
| 508 | |
| 509 | while ((p = procps_scan(0)) != 0) { |
| 510 | int n = ntop; |
| 511 | |
| 512 | top = xrealloc(top, (++ntop)*sizeof(procps_status_t)); |
| 513 | memcpy(top + n, p, sizeof(procps_status_t)); |
| 514 | } |
| 515 | if (ntop == 0) { |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 516 | bb_error_msg_and_die("Can't find process info in /proc"); |
| 517 | } |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 518 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 519 | if(!Hertz) { |
| 520 | init_Hertz_value(); |
| 521 | do_stats(); |
| 522 | sleep(1); |
| 523 | clearmems(); |
| 524 | continue; |
Rob Landley | b280455 | 2006-02-13 22:04:27 +0000 | [diff] [blame] | 525 | } |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 526 | do_stats(); |
| 527 | #else |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 528 | qsort(top, ntop, sizeof(procps_status_t), (void*)sort_function); |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 529 | #endif /* CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 530 | opt = lines; |
| 531 | if (opt > ntop) { |
| 532 | opt = ntop; |
| 533 | } |
| 534 | /* show status for each of the processes */ |
| 535 | display_status(opt, col); |
Mike Frysinger | 223b887 | 2005-07-30 09:42:05 +0000 | [diff] [blame] | 536 | #ifdef CONFIG_FEATURE_USE_TERMIOS |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 537 | tv.tv_sec = interval; |
| 538 | tv.tv_usec = 0; |
| 539 | FD_ZERO (&readfds); |
| 540 | FD_SET (0, &readfds); |
| 541 | select (1, &readfds, NULL, NULL, &tv); |
| 542 | if (FD_ISSET (0, &readfds)) { |
| 543 | if (read (0, &c, 1) <= 0) { /* signal */ |
Mike Frysinger | 223b887 | 2005-07-30 09:42:05 +0000 | [diff] [blame] | 544 | return EXIT_FAILURE; |
| 545 | } |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 546 | if(c == 'q' || c == initial_settings.c_cc[VINTR]) |
| 547 | return EXIT_SUCCESS; |
| 548 | if(c == 'M') { |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 549 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 550 | sort_function[0] = mem_sort; |
| 551 | sort_function[1] = pcpu_sort; |
| 552 | sort_function[2] = time_sort; |
| 553 | #else |
| 554 | sort_function = mem_sort; |
| 555 | #endif |
| 556 | } |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 557 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 558 | if(c == 'P') { |
| 559 | sort_function[0] = pcpu_sort; |
| 560 | sort_function[1] = mem_sort; |
| 561 | sort_function[2] = time_sort; |
| 562 | } |
| 563 | if(c == 'T') { |
| 564 | sort_function[0] = time_sort; |
| 565 | sort_function[1] = mem_sort; |
| 566 | sort_function[2] = pcpu_sort; |
| 567 | } |
| 568 | #endif |
| 569 | if(c == 'N') { |
"Vladimir N. Oleynik" | f246dc7 | 2005-09-16 12:55:29 +0000 | [diff] [blame] | 570 | #ifdef CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 571 | sort_function[0] = pid_sort; |
| 572 | #else |
| 573 | sort_function = pid_sort; |
| 574 | #endif |
| 575 | } |
| 576 | } |
| 577 | #else |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 578 | sleep(interval); |
Mike Frysinger | 223b887 | 2005-07-30 09:42:05 +0000 | [diff] [blame] | 579 | #endif /* CONFIG_FEATURE_USE_TERMIOS */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 580 | clearmems(); |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 581 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 582 | |
Eric Andersen | 420b208 | 2002-09-17 22:14:58 +0000 | [diff] [blame] | 583 | return EXIT_SUCCESS; |
| 584 | } |