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

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

version 1.14, 1997/12/19 09:34:46 version 1.15, 1998/06/12 22:09:23
Line 464 
Line 464 
                         addch(cpuchar[c]);                          addch(cpuchar[c]);
         }          }
   
           /*
            * The above code does not account for time in the CP_INTR state.
            * Thus the total may be less than 100%.  If the total is less than
            * the previous total old data may be left on the graph.  The graph
            * assumes one character position for every 2 percentage points for
            * a total of 50 positions.  Ensure all positions have been filled.
            */
           while ( psiz++ <= 50 )
                   addch(' ');
   
         putint(ucount(), STATROW, STATCOL, 3);          putint(ucount(), STATROW, STATCOL, 3);
         putfloat(avenrun[0], STATROW, STATCOL + 17, 6, 2, 0);          putfloat(avenrun[0], STATROW, STATCOL + 17, 6, 2, 0);
         putfloat(avenrun[1], STATROW, STATCOL + 23, 6, 2, 0);          putfloat(avenrun[1], STATROW, STATCOL + 23, 6, 2, 0);

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