ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/src/libstatgrab/os_info.c
Revision: 1.2
Committed: Tue Feb 18 23:23:36 2003 UTC (21 years, 2 months ago) by pajs
Content type: text/plain
Branch: MAIN
Changes since 1.1: +2 -10 lines
Log Message:
Changed the kstat_close to not return NULL in event of a failure. If we
cant close it, well there is nothing i can do about that, so i may as well
at least return something useful since its done all the hardwork by that
point. And anywan, it should never fail to close :)

File Contents

# Content
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 "statgrab.h"
26 #include <sys/utsname.h>
27 #include <stdio.h>
28 #ifdef SOLARIS
29 #include <kstat.h>
30 #include <time.h>
31 #endif
32
33 general_stat_t *get_general_stats(){
34
35 static general_stat_t general_stat;
36
37 struct utsname os;
38 time_t boottime,curtime;
39 kstat_ctl_t *kc;
40 kstat_t *ksp;
41 kstat_named_t *kn;
42
43 if((uname(&os)) < 0){
44 return NULL;
45 }
46
47 general_stat.os_name = os.sysname;
48 general_stat.os_release = os.release;
49 general_stat.os_version = os.version;
50 general_stat.platform = os.machine;
51 general_stat.hostname = os.nodename;
52
53 /* get uptime */
54 if ((kc = kstat_open()) == NULL) {
55 return NULL;
56 }
57 if((ksp=kstat_lookup(kc, "unix", -1, "system_misc"))==NULL){
58 return NULL;
59 }
60 if (kstat_read(kc, ksp, 0) == -1) {
61 return NULL;
62 }
63 if((kn=kstat_data_lookup(ksp, "boot_time")) == NULL){
64 return NULL;
65 }
66 boottime=(kn->value.ui32);
67
68 kstat_close(kc);
69
70 time(&curtime);
71 general_stat.uptime = curtime - boottime;
72
73 return &general_stat;
74
75 }