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.3 by pajs, Fri Mar 7 15:43:14 2003 UTC vs.
Revision 1.6 by ats, Sun Oct 19 00:25:30 2003 UTC

# Line 1 | Line 1
1   /*
2   * i-scream central monitoring system
3 < * http://www.i-scream.org.uk
4 < * Copyright (C) 2000-2002 i-scream
3 > * http://www.i-scream.org
4 > * Copyright (C) 2000-2003 i-scream
5   *
6   * This program is free software; you can redistribute it and/or
7   * modify it under the terms of the GNU General Public License
# Line 23 | Line 23
23   #endif
24  
25   #include "statgrab.h"
26 + #include "tools.h"
27   #ifdef SOLARIS
28   #include <sys/stat.h>
29   #include <sys/swap.h>
# Line 30 | Line 31
31   #endif
32   #ifdef LINUX
33   #include <stdio.h>
33 #include "tools.h"
34   #endif
35 + #ifdef FREEBSD
36 + #include <unistd.h>
37 + #include <sys/types.h>
38 + #include <kvm.h>
39 + #endif
40  
41   swap_stat_t *get_swap_stats(){
42  
# Line 45 | Line 50 | swap_stat_t *get_swap_stats(){
50          FILE *f;
51          char *line_ptr;
52   #endif
53 + #ifdef FREEBSD
54 +        struct kvm_swap swapinfo;
55 +        int pagesize;
56 +        kvm_t *kvmd;
57 + #endif
58  
59   #ifdef SOLARIS
60          if((pagesize=sysconf(_SC_PAGESIZE)) == -1){
# Line 71 | Line 81 | swap_stat_t *get_swap_stats(){
81          }
82          fclose(f);
83   #endif
84 + #ifdef FREEBSD
85 +        if((kvmd = get_kvm()) == NULL){
86 +                return NULL;
87 +        }
88 +        if ((kvm_getswapinfo(kvmd, &swapinfo, 1,0)) == -1){
89 +                return NULL;
90 +        }
91 +        pagesize=getpagesize();
92  
93 +        swap_stat.total= (long long)swapinfo.ksw_total * (long long)pagesize;
94 +        swap_stat.used = (long long)swapinfo.ksw_used * (long long)pagesize;
95 +        swap_stat.free = swap_stat.total-swap_stat.used;
96 + #endif
97          return &swap_stat;
98  
99   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines