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

Comparing projects/libstatgrab/src/libstatgrab/page_stats.c (file contents):
Revision 1.8 by ats, Sat Oct 18 23:04:23 2003 UTC vs.
Revision 1.9 by ats, Sun Oct 19 02:03:02 2003 UTC

# Line 23 | Line 23
23   #endif
24  
25   #include "statgrab.h"
26 + #include "tools.h"
27   #include <time.h>
28   #ifdef SOLARIS
29   #include <kstat.h>
# Line 31 | Line 32
32   #endif
33   #ifdef LINUX
34   #include <stdio.h>
34 #include "tools.h"
35   #endif
36   #ifdef FREEBSD
37   #include <sys/types.h>
# Line 54 | Line 54 | page_stat_t *get_page_stats(){
54   #ifdef FREEBSD
55          size_t size;
56   #endif
57 + #ifdef NETBSD
58 +        struct uvmexp *uvm;
59 + #endif
60  
61 +        page_stats.systime = time(NULL);
62          page_stats.pages_pagein=0;
63          page_stats.pages_pageout=0;
64  
# Line 72 | Line 76 | page_stat_t *get_page_stats(){
76                  page_stats.pages_pageout+=(long long)cs.cpu_vminfo.pgpgout;
77          }
78  
75        page_stats.systime=time(NULL);
76
79          kstat_close(kc);
80   #endif
81   #ifdef LINUX
# Line 87 | Line 89 | page_stat_t *get_page_stats(){
89          if((sscanf(line_ptr, "page %lld %lld", &page_stats.pages_pagein, &page_stats.pages_pageout))!=2){
90                  return NULL;
91          }
90        page_stats.systime=time(NULL);
92          fclose(f);
93  
94   #endif
# Line 100 | Line 101 | page_stat_t *get_page_stats(){
101          if (sysctlbyname("vm.stats.vm.v_swappgsout", &page_stats.pages_pageout, &size, NULL, 0) < 0){
102                  return NULL;
103          }
104 <
104 > #endif
105 > #ifdef NETBSD
106 >        if ((uvm = get_uvmexp()) == NULL) {
107 >                return NULL;
108 >        }
109 >        page_stats.pages_pagein = uvm->pgswapin;
110 >        page_stats.pages_pageout = uvm->pgswapout;
111   #endif
112  
113          return &page_stats;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines