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

Diff for /src/usr.bin/systat/mbufs.c between version 1.19 and 1.20

version 1.19, 2008/12/17 08:21:43 version 1.20, 2008/12/18 19:46:39
Line 340 
Line 340 
 {  {
         int i;          int i;
   
   
   
         if (p == -1 || (p == 0 && ifi != interfaces)) {          if (p == -1 || (p == 0 && ifi != interfaces)) {
                 print_fld_str(FLD_MB_IFACE, ifi->name);                  print_fld_str(FLD_MB_IFACE, ifi->name);
         }          }
Line 357 
Line 355 
 #if NOTYET  #if NOTYET
         print_fld_uint(FLD_MB_RXDELAY, ifi->data.ifi_rxdelay);          print_fld_uint(FLD_MB_RXDELAY, ifi->data.ifi_rxdelay);
         print_fld_uint(FLD_MB_TXDELAY, ifi->data.ifi_txdelay);          print_fld_uint(FLD_MB_TXDELAY, ifi->data.ifi_txdelay);
         print_fld_size(FLD_MB_LLOCKS, ifi->data.ifi_txdelay);  
 #endif  #endif
           if (ifi->data.ifi_livelocks)
                   print_fld_size(FLD_MB_LLOCKS, ifi->data.ifi_livelocks);
   
         if (p >= 0 && p < mclpool_count) {          if (p >= 0 && p < mclpool_count) {
                 struct mclpool *mp = &ifi->data.ifi_mclpool[p];                  struct mclpool *mp = &ifi->data.ifi_mclpool[p];

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20