[BACK]Return to engine.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / systat

Diff for /src/usr.bin/systat/engine.c between version 1.14 and 1.15

version 1.14, 2011/04/05 07:35:32 version 1.15, 2013/09/07 11:43:49
Line 55 
Line 55 
 useconds_t udelay = 5000000;  useconds_t udelay = 5000000;
 int dispstart = 0;  int dispstart = 0;
 int interactive = 1;  int interactive = 1;
   int averageonly = 0;
 int maxprint = 0;  int maxprint = 0;
 int paused = 0;  int paused = 0;
 int rawmode = 0;  int rawmode = 0;
Line 1351 
Line 1352 
   
                 if (need_update) {                  if (need_update) {
                         erase();                          erase();
                         disp_update();                          if (!averageonly ||
                               (averageonly && count == countmax - 1))
                                   disp_update();
                         end_page();                          end_page();
                         need_update = 0;                          need_update = 0;
                         if (countmax && ++count >= countmax)                          if (countmax && ++count >= countmax)

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15