ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/src/saidar/saidar.c
(Generate patch)

Comparing projects/libstatgrab/src/saidar/saidar.c (file contents):
Revision 1.12 by tdb, Tue Oct 21 18:01:15 2003 UTC vs.
Revision 1.18 by ats, Fri Nov 7 18:39:39 2003 UTC

# Line 296 | Line 296 | void display_data(){
296          }
297  
298          /* VM */
299 <        if (stats.mem_stats != NULL) {  
299 >        if (stats.mem_stats != NULL && stats.mem_stats->total != 0) {  
300                  move(6, 54);
301                  printw("%5.2f%%", (100.00 * (float)(stats.mem_stats->used)/stats.mem_stats->total));
302          }
303 <        if (stats.swap_stats != NULL) {
303 >        if (stats.swap_stats != NULL && stats.swap_stats->total != 0) {
304                  move(7, 54);
305                  printw("%5.2f%%", (100.00 * (float)(stats.swap_stats->used)/stats.swap_stats->total));
306          }
307 <        if (stats.mem_stats != NULL && stats.swap_stats != NULL) {      
307 >        if (stats.mem_stats != NULL && stats.swap_stats != NULL &&
308 >            stats.mem_stats->total != 0 && stats.swap_stats->total != 0) {      
309                  move(8, 54);
310                  printw("%5.2f%%", (100.00 * (float)(stats.mem_stats->used+stats.swap_stats->used)/(stats.mem_stats->total+stats.swap_stats->total)));
311          }
# Line 427 | Line 428 | int main(int argc, char **argv){
428          extern int optind;
429          int c;
430  
431 +        time_t last_update = 0;
432 +
433          WINDOW *window;
434  
432        int stdin_fileno;
433        fd_set infds;
434        struct timeval timeout;
435
435          extern int errno;
437        char ch;
436  
437          int delay=2;
438   #ifdef ALLBSD
# Line 448 | Line 446 | int main(int argc, char **argv){
446          }
447   #endif
448                  
449 <        while ((c = getopt(argc, argv, "vhd:")) != EOF){
449 >        while ((c = getopt(argc, argv, "vhd:")) != -1){
450                  switch (c){
451                          case 'd':
452                                  delay = atoi(optarg);
# Line 475 | Line 473 | int main(int argc, char **argv){
473          nonl();
474          cbreak();
475          noecho();
476 +        timeout(delay * 1000);
477          window=newwin(0, 0, 0, 0);
478          clear();
479  
# Line 485 | Line 484 | int main(int argc, char **argv){
484          }
485  
486          display_headings();
488        stdin_fileno=fileno(stdin);
487  
488          for(;;){
489 +                time_t now;
490 +                int ch = getch();
491  
492 <                FD_ZERO(&infds);
493 <                FD_SET(stdin_fileno, &infds);
494 <                timeout.tv_sec = delay;
495 <                timeout.tv_usec = 0;
496 <                
497 <                if((select((stdin_fileno+1), &infds, NULL, NULL, &timeout)) == -1){
498 <                        if(errno!=EINTR){
499 <                                perror("select failed");
500 <                                exit(1);
501 <                        }
492 >                if (ch == 'q'){
493 >                        break;
494                  }
495  
496 <                if(FD_ISSET(stdin_fileno, &infds)){
497 <                        ch=getch();
498 <                        if (ch == 'q'){
499 <                                endwin();
500 <                                return 0;
501 <                        }
496 >                /* To keep the numbers slightly accurate we do not want them
497 >                 * updating more frequently than once a second.
498 >                 */
499 >                now = time(NULL);
500 >                if ((now - last_update) >= 1) {
501 >                        get_stats();
502                  }
503 +                last_update = now;
504  
512                get_stats();
513
505                  display_data();
515
516                /* To keep the numbers slightly accurate we do not want them updating more
517                 * frequently than once a second.
518                 */
519                sleep(1);
506          }      
507  
508          endwin();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines