[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.80 and 1.81

version 1.80, 2015/08/20 22:32:42 version 1.81, 2016/08/24 03:13:45
Line 64 
Line 64 
         struct  vmtotal Total;          struct  vmtotal Total;
         struct  nchstats nchstats;          struct  nchstats nchstats;
         long    nchcount;          long    nchcount;
         u_quad_t *intrcnt;          uint64_t *intrcnt;
 } s, s1, s2, s3, z;  } s, s1, s2, s3, z;
   
 extern struct _disk     cur;  extern struct _disk     cur;
Line 606 
Line 606 
         size = sizeof(si->time);          size = sizeof(si->time);
         if (sysctl(cp_time_mib, 2, &si->time, &size, NULL, 0) < 0) {          if (sysctl(cp_time_mib, 2, &si->time, &size, NULL, 0) < 0) {
                 error("Can't get KERN_CPTIME: %s\n", strerror(errno));                  error("Can't get KERN_CPTIME: %s\n", strerror(errno));
                 bzero(&si->time, sizeof(si->time));                  memset(&si->time, 0, sizeof(si->time));
         }          }
   
         size = sizeof(si->nchstats);          size = sizeof(si->nchstats);
         if (sysctl(nchstats_mib, 2, &si->nchstats, &size, NULL, 0) < 0) {          if (sysctl(nchstats_mib, 2, &si->nchstats, &size, NULL, 0) < 0) {
                 error("Can't get KERN_NCHSTATS: %s\n", strerror(errno));                  error("Can't get KERN_NCHSTATS: %s\n", strerror(errno));
                 bzero(&si->nchstats, sizeof(si->nchstats));                  memset(&si->nchstats, 0, sizeof(si->nchstats));
         }          }
   
         size = sizeof(si->uvmexp);          size = sizeof(si->uvmexp);
         if (sysctl(uvmexp_mib, 2, &si->uvmexp, &size, NULL, 0) < 0) {          if (sysctl(uvmexp_mib, 2, &si->uvmexp, &size, NULL, 0) < 0) {
                 error("Can't get VM_UVMEXP: %s\n", strerror(errno));                  error("Can't get VM_UVMEXP: %s\n", strerror(errno));
                 bzero(&si->uvmexp, sizeof(si->uvmexp));                  memset(&si->uvmexp, 0, sizeof(si->uvmexp));
         }          }
   
         size = sizeof(si->Total);          size = sizeof(si->Total);
         if (sysctl(vmtotal_mib, 2, &si->Total, &size, NULL, 0) < 0) {          if (sysctl(vmtotal_mib, 2, &si->Total, &size, NULL, 0) < 0) {
                 error("Can't get VM_METER: %s\n", strerror(errno));                  error("Can't get VM_METER: %s\n", strerror(errno));
                 bzero(&si->Total, sizeof(si->Total));                  memset(&si->Total, 0, sizeof(si->Total));
         }          }
 }  }
   
Line 632 
Line 632 
 allocinfo(struct Info *si)  allocinfo(struct Info *si)
 {  {
         memset(si, 0, sizeof(*si));          memset(si, 0, sizeof(*si));
         si->intrcnt = calloc(nintr, sizeof(u_quad_t));          si->intrcnt = calloc(nintr, sizeof(*si->intrcnt));
         if (si->intrcnt == NULL)          if (si->intrcnt == NULL)
                 errx(2, "out of memory");                  errx(2, "out of memory");
 }  }
Line 640 
Line 640 
 static void  static void
 copyinfo(struct Info *from, struct Info *to)  copyinfo(struct Info *from, struct Info *to)
 {  {
         u_quad_t *intrcnt;          uint64_t *intrcnt;
   
         intrcnt = to->intrcnt;          intrcnt = to->intrcnt;
         *to = *from;          *to = *from;
         bcopy(from->intrcnt, to->intrcnt = intrcnt, nintr * sizeof (u_quad_t));          memcpy(to->intrcnt = intrcnt, from->intrcnt, nintr * sizeof(*intrcnt));
 }  }
   
 static void  static void

Legend:
Removed from v.1.80  
changed lines
  Added in v.1.81