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

Comparing projects/libstatgrab/src/libstatgrab/os_info.c (file contents):
Revision 1.4 by pajs, Fri Mar 7 13:20:46 2003 UTC vs.
Revision 1.11 by ats, Mon Nov 10 23:25:45 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 24 | Line 24
24  
25   #include <sys/utsname.h>
26   #include "statgrab.h"
27 + #include <stdlib.h>
28   #ifdef SOLARIS
29   #include <kstat.h>
30   #include <time.h>
31   #endif
32 < #ifdef LINUX
32 > #if defined(LINUX) || defined(CYGWIN)
33   #include <stdio.h>
34   #endif
35 + #ifdef ALLBSD
36 + #ifdef FREEBSD
37 + #include <sys/types.h>
38 + #include <sys/sysctl.h>
39 + #else
40 + #include <sys/param.h>
41 + #include <sys/sysctl.h>
42 + #endif
43 + #include <time.h>
44 + #include <sys/time.h>
45 + #endif
46  
47   general_stat_t *get_general_stats(){
48  
# Line 43 | Line 55 | general_stat_t *get_general_stats(){
55          kstat_t *ksp;
56          kstat_named_t *kn;
57   #endif
58 < #ifdef LINUX
58 > #if defined(LINUX) || defined(CYGWIN)
59          FILE *f;
60   #endif
61 + #ifdef ALLBSD
62 +        int mib[2];
63 +        struct timeval boottime;
64 +        time_t curtime;
65 +        size_t size;
66 + #endif
67  
68          if((uname(&os)) < 0){
69                  return NULL;
# Line 78 | Line 96 | general_stat_t *get_general_stats(){
96          time(&curtime);
97          general_stat.uptime = curtime - boottime;
98   #endif
99 < #ifdef LINUX
99 > #if defined(LINUX) || defined(CYGWIN)
100          if ((f=fopen("/proc/uptime", "r")) == NULL) {
101                  return NULL;
102          }
# Line 86 | Line 104 | general_stat_t *get_general_stats(){
104                  return NULL;
105          }
106          fclose(f);
107 + #endif
108 + #ifdef ALLBSD
109 +        mib[0] = CTL_KERN;
110 +        mib[1] = KERN_BOOTTIME;
111 +        size = sizeof boottime;
112 +        if (sysctl(mib, 2, &boottime, &size, NULL, 0) < 0){
113 +                return NULL;
114 +        }
115 +        time(&curtime);
116 +        general_stat.uptime=curtime-boottime.tv_sec;
117   #endif
118  
119          return &general_stat;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines