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

Comparing projects/libstatgrab/src/libstatgrab/swap_stats.c (file contents):
Revision 1.20 by tdb, Wed Apr 7 21:08:40 2004 UTC vs.
Revision 1.23 by ats, Sat Nov 6 15:41:30 2004 UTC

# Line 53 | Line 53
53   #include <uvm/uvm.h>
54   #include <unistd.h>
55   #endif
56 + #ifdef HPUX
57 + #include <sys/param.h>
58 + #include <sys/pstat.h>
59 + #include <unistd.h>
60 + #define SWAP_BATCH 5
61 + #endif
62  
63   sg_swap_stats *sg_get_swap_stats(){
64  
65          static sg_swap_stats swap_stat;
66  
67 + #ifdef HPUX
68 +        struct pst_swapinfo pstat_swapinfo[SWAP_BATCH];
69 +        int swapidx = 0;
70 +        int num, i;
71 + #endif
72   #ifdef SOLARIS
73          struct anoninfo ai;
74          int pagesize;
# Line 82 | Line 93 | sg_swap_stats *sg_get_swap_stats(){
93          struct uvmexp *uvm;
94   #endif
95  
96 + #ifdef HPUX
97 +        swap_stat.total = 0;
98 +        swap_stat.used = 0;
99 +        swap_stat.free = 0;
100 +
101 +        while (1) {
102 +                num = pstat_getswap(pstat_swapinfo, sizeof pstat_swapinfo[0],
103 +                                    SWAP_BATCH, swapidx);
104 +                if (num == -1) {
105 +                        sg_set_error_with_errno(SG_ERROR_PSTAT,
106 +                                                "pstat_getswap");
107 +                        return NULL;
108 +                } else if (num == 0) {
109 +                        break;
110 +                }
111 +
112 +                for (i = 0; i < num; i++) {
113 +                        struct pst_swapinfo *si = &pstat_swapinfo[i];
114 +
115 +                        if ((si->pss_flags & SW_ENABLED) != SW_ENABLED) {
116 +                                continue;
117 +                        }
118 +        
119 +                        if ((si->pss_flags & SW_BLOCK) == SW_BLOCK) {
120 +                                swap_stat.total += ((long long) si->pss_nblksavail) * 1024LL;
121 +                                swap_stat.used += ((long long) si->pss_nfpgs) * 1024LL;
122 +                                swap_stat.free = swap_stat.total - swap_stat.used;
123 +                        }
124 +                        if ((si->pss_flags & SW_FS) == SW_FS) {
125 +                                swap_stat.total += ((long long) si->pss_limit) * 1024LL;
126 +                                swap_stat.used += ((long long) si->pss_allocated) * 1024LL;
127 +                                swap_stat.free = swap_stat.total - swap_stat.used;
128 +                        }
129 +                }
130 +                swapidx = pstat_swapinfo[num - 1].pss_idx + 1;
131 +        }
132 + #endif
133   #ifdef SOLARIS
134          if((pagesize=sysconf(_SC_PAGESIZE)) == -1){
135 <                sg_set_error(SG_ERROR_SYSCONF, "_SC_PAGESIZE");
135 >                sg_set_error_with_errno(SG_ERROR_SYSCONF, "_SC_PAGESIZE");
136                  return NULL;
137          }
138          if (swapctl(SC_AINFO, &ai) == -1) {
139 <                sg_set_error(SG_ERROR_SWAPCTL, NULL);
139 >                sg_set_error_with_errno(SG_ERROR_SWAPCTL, NULL);
140                  return NULL;
141          }
142          swap_stat.total = (long long)ai.ani_max * (long long)pagesize;
# Line 97 | Line 145 | sg_swap_stats *sg_get_swap_stats(){
145   #endif
146   #if defined(LINUX) || defined(CYGWIN)
147          if ((f = fopen("/proc/meminfo", "r")) == NULL) {
148 <                sg_set_error(SG_ERROR_OPEN, "/proc/meminfo");
148 >                sg_set_error_with_errno(SG_ERROR_OPEN, "/proc/meminfo");
149                  return NULL;
150          }
151  
# Line 126 | Line 174 | sg_swap_stats *sg_get_swap_stats(){
174  
175          mibsize = sizeof mib / sizeof mib[0];
176          if (sysctlnametomib("vm.swap_info", mib, &mibsize) < 0) {
177 <                sg_set_error(SG_ERROR_SYSCTLNAMETOMIB, "vm.swap_info");
177 >                sg_set_error_with_errno(SG_ERROR_SYSCTLNAMETOMIB,
178 >                                        "vm.swap_info");
179                  return NULL;
180          }
181          for (n = 0; ; ++n) {
# Line 143 | Line 192 | sg_swap_stats *sg_get_swap_stats(){
192                  swap_stat.used += (long long) xsw.xsw_used;
193          }
194          if (errno != ENOENT) {
195 <                sg_set_error(SG_ERROR_ENOENT, NULL);
195 >                sg_set_error_with_errno(SG_ERROR_SYSCTL, "vm.swap_info");
196                  return NULL;
197          }
198   #else

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines