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

Comparing projects/cms/source/ihost/libstatgrab/os_info.c (file contents):
Revision 1.1 by pajs, Mon May 13 14:42:11 2002 UTC vs.
Revision 1.7 by tdb, Wed May 29 19:41:59 2002 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
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
8 + * as published by the Free Software Foundation; either version 2
9 + * of the License, or (at your option) any later version.
10 + *
11 + * This program is distributed in the hope that it will be useful,
12 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 + * GNU General Public License for more details.
15 + *
16 + * You should have received a copy of the GNU General Public License
17 + * along with this program; if not, write to the Free Software
18 + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19 + */
20 +
21 + #ifdef HAVE_CONFIG_H
22 + #include "config.h"
23 + #endif
24 +
25   #include <sys/utsname.h>
26 < #include <ukcprog.h>
26 > #include "ukcprog.h"
27   #include <stdio.h>
28   #ifdef SOLARIS
29   #include <kstat.h>
# Line 9 | Line 33
33   #include <sys/types.h>
34   #include <sys/sysctl.h>
35   #include <time.h>
36 + #include <sys/time.h>
37   #endif
38  
39   char *get_os_info(){
# Line 27 | Line 52 | char *get_os_info(){
52   #ifdef FREEBSD
53          struct timeval boottime;
54          time_t curtime;
55 +        size_t size;
56   #endif
57          if((uname(&os)) < 0){
58                  errf("Failed to get os stats (%m)");
# Line 90 | Line 116 | char *get_os_info(){
116   #endif
117  
118  
119 <        xml_os_info=strf("<os><name>%s</name><release>%s</release><version>%s</version><sysname>%s</sysname><platform>%s</platform><uptime>%ld</uptime>", os.sysname, os.release, os.version, os.nodename, os.machine, uptime);
119 >        xml_os_info=strf("<os><name>%s</name><release>%s</release><version>%s</version><sysname>%s</sysname><platform>%s</platform><uptime>%ld</uptime></os>", os.sysname, os.release, os.version, os.nodename, os.machine, uptime);
120  
95        printf("%s\n",xml_os_info);
121          return xml_os_info;
97 }
98
99 int main(){
100        get_os_info();
101        exit(0);
122   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines