xenocara/app/xload/get_load.c

669 lines
17 KiB
C
Raw Normal View History

2006-11-25 13:07:29 -07:00
/*
Copyright (c) 1989 X Consortium
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of the X Consortium shall
not be used in advertising or otherwise to promote the sale, use or
other dealings in this Software without prior written authorization
from the X Consortium.
*/
/*
* get_load - get system load
*
* Authors: Many and varied...
*
* Call InitLoadPoint() to initialize.
* GetLoadPoint() is a callback for the StripChart widget.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <X11/Xos.h>
#include <X11/Intrinsic.h>
#include <X11/Xlocale.h>
#include <stdio.h>
#include <stdlib.h>
#include "xload.h"
#if defined(__CYGWIN__)
2013-08-17 10:00:54 -06:00
# define WIN32_LEAN_AND_MEAN
# include <windows.h>
2006-11-25 13:07:29 -07:00
typedef struct {
DWORD stat;
union {
LONG vLong;
double vDouble;
LONGLONG vLongLong;
void *string;
} u;
} COUNTER;
static HANDLE query;
static HANDLE counter;
static HINSTANCE hdll;
static long (__stdcall *pdhopen)(LPCSTR, DWORD, HANDLE);
static long (__stdcall *pdhaddcounter)(HANDLE, LPCSTR, DWORD, HANDLE*);
static long (__stdcall *pdhcollectquerydata)(HANDLE);
static long (__stdcall *pdhgetformattedcountervalue)(HANDLE, DWORD, LPDWORD, COUNTER*);
2013-08-17 10:00:54 -06:00
# define CYGWIN_PERF
2012-04-07 09:57:21 -06:00
void InitLoadPoint(void)
2006-11-25 13:07:29 -07:00
{
long ret;
hdll=LoadLibrary("pdh.dll");
if (!hdll) exit(-1);
pdhopen=(void*)GetProcAddress(hdll, "PdhOpenQueryA");
if (!pdhopen) exit(-1);
pdhaddcounter=(void*)GetProcAddress(hdll, "PdhAddCounterA");
if (!pdhaddcounter) exit(-1);
pdhcollectquerydata=(void*)GetProcAddress(hdll, "PdhCollectQueryData");
if (!pdhcollectquerydata) exit(-1);
pdhgetformattedcountervalue=(void*)GetProcAddress(hdll, "PdhGetFormattedCounterValue");
if (!pdhgetformattedcountervalue) exit(-1);
ret = pdhopen( NULL , 0, &query );
if (ret!=0) exit(-1);
ret = pdhaddcounter(query, "\\Processor(_Total)\\% Processor Time", 0, &counter);
2013-08-17 10:00:54 -06:00
if (ret!=0) exit(-1);
2006-11-25 13:07:29 -07:00
}
2012-04-07 09:57:21 -06:00
void GetLoadPoint(
Widget w, /* unused */
XtPointer closure, /* unused */
XtPointer call_data) /* pointer to (double) return value */
2006-11-25 13:07:29 -07:00
{
double *loadavg = (double *)call_data;
COUNTER fmtvalue;
long ret;
*loadavg = 0.0;
ret = pdhcollectquerydata(query);
if (ret!=0) return;
ret = pdhgetformattedcountervalue(counter, 0x200, NULL, &fmtvalue);
if (ret!=0) return;
*loadavg = (fmtvalue.u.vDouble-0.01)/100.0;
}
2013-08-17 10:00:54 -06:00
#else /* not CYGWIN */
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
static void xload_error(const char *, const char *) _X_NORETURN;
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
# ifdef HAVE_GETLOADAVG
# include <stdlib.h>
# ifdef HAVE_SYS_LOADAVG_H
# include <sys/loadavg.h> /* Solaris definition of getloadavg */
# endif
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
void InitLoadPoint(void)
{
}
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
void GetLoadPoint(
Widget w, /* unused */
XtPointer closure, /* unused */
XtPointer call_data) /* ptr to (double) return value */
{
double *loadavg = (double *)call_data;
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
if (getloadavg(loadavg, 1) < 0)
xload_error("couldn't obtain load average", "");
}
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
# else /* not HAVE_GETLOADAVG */
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
# if defined(att) || defined(QNX4)
# define LOADSTUB
# endif
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
# ifndef LOADSTUB
# if !defined(linux) && !defined(__GLIBC__)
# include <nlist.h>
# endif /* !linux && ... */
# endif /* LOADSTUB */
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
# ifdef CSRG_BASED
# include <sys/param.h>
# endif
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
# ifdef sgi
# define FSCALE 1024.0
# endif
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
# ifdef __osf__
2006-11-25 13:07:29 -07:00
/*
* Use the table(2) interface; it doesn't require setuid root.
*
* Select 0, 1, or 2 for 5, 30, or 60 second load averages.
*/
2013-08-17 10:00:54 -06:00
# ifndef WHICH_AVG
# define WHICH_AVG 1
# endif
# include <sys/table.h>
# endif
# ifdef SVR4
# ifndef FSCALE
# define FSCALE (1 << 8)
# endif
# endif
# if defined(SYSV) && defined(i386)
2006-11-25 13:07:29 -07:00
/*
* inspired by 'avgload' by John F. Haugh II
*/
2013-08-17 10:00:54 -06:00
# include <sys/param.h>
# include <sys/buf.h>
# include <sys/immu.h>
# include <sys/region.h>
# include <sys/var.h>
# include <sys/proc.h>
# define KERNEL_FILE "/unix"
# define KMEM_FILE "/dev/kmem"
# define VAR_NAME "v"
# define PROC_NAME "proc"
# define BUF_NAME "buf"
# define DECAY 0.8
2006-11-25 13:07:29 -07:00
struct nlist namelist[] = {
{VAR_NAME},
{PROC_NAME},
{BUF_NAME},
{0},
};
static int kmem;
static struct var v;
static struct proc *p;
static XtPointer first_buf, last_buf;
void InitLoadPoint() /* SYSV386 version */
{
int i;
nlist( KERNEL_FILE, namelist);
2013-08-17 10:00:54 -06:00
for (i=0; namelist[i].n_name; i++)
2006-11-25 13:07:29 -07:00
if (namelist[i].n_value == 0)
xload_error("cannot get name list from", KERNEL_FILE);
if ((kmem = open(KMEM_FILE, O_RDONLY)) < 0)
xload_error("cannot open", KMEM_FILE);
if (lseek(kmem, namelist[0].n_value, 0) == -1)
xload_error("cannot seek", VAR_NAME);
if (read(kmem, &v, sizeof(v)) != sizeof(v))
xload_error("cannot read", VAR_NAME);
if ((p=(struct proc *)malloc(v.v_proc*sizeof(*p))) == NULL)
xload_error("cannot allocat space for", PROC_NAME);
2013-08-17 10:00:54 -06:00
2006-11-25 13:07:29 -07:00
first_buf = (XtPointer) namelist[2].n_value;
last_buf = (char *)first_buf + v.v_buf * sizeof(struct buf);
}
2013-08-17 10:00:54 -06:00
2006-11-25 13:07:29 -07:00
/* ARGSUSED */
void GetLoadPoint( w, closure, call_data ) /* SYSV386 version */
Widget w; /* unused */
XtPointer closure; /* unused */
XtPointer call_data; /* pointer to (double) return value */
{
double *loadavg = (double *)call_data;
static double avenrun = 0.0;
int i, nproc, size;
2013-08-17 10:00:54 -06:00
2006-11-25 13:07:29 -07:00
(void) lseek(kmem, namelist[0].n_value, 0);
(void) read(kmem, &v, sizeof(v));
size = (struct proc *)v.ve_proc - (struct proc *)namelist[1].n_value;
(void) lseek(kmem, namelist[1].n_value, 0);
(void) read(kmem, p, size * sizeof(struct proc));
2013-08-17 10:00:54 -06:00
for (nproc = 0, i=0; i<size; i++)
2006-11-25 13:07:29 -07:00
if ((p[i].p_stat == SRUN) ||
(p[i].p_stat == SIDL) ||
(p[i].p_stat == SXBRK) ||
(p[i].p_stat == SSLEEP && (p[i].p_pri < PZERO) &&
(p[i].p_wchan >= (char *)first_buf) && (p[i].p_wchan < (char *)last_buf)))
nproc++;
/* update the load average using a decay filter */
avenrun = DECAY * avenrun + nproc * (1.0 - DECAY);
*loadavg = avenrun;
return;
}
2013-08-17 10:00:54 -06:00
# else /* not (SYSV && i386) */
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
# if defined(linux) || (defined(__FreeBSD_kernel__) && defined(__GLIBC__))
2006-11-25 13:07:29 -07:00
2012-04-07 09:57:21 -06:00
void InitLoadPoint(void)
2006-11-25 13:07:29 -07:00
{
return;
}
2012-04-07 09:57:21 -06:00
void GetLoadPoint(
Widget w, /* unused */
XtPointer closure, /* unused */
XtPointer call_data) /* pointer to (double) return value */
2006-11-25 13:07:29 -07:00
{
static int fd = -1;
int n;
char buf[10] = {0, };
2013-08-17 10:00:54 -06:00
# ifndef X_LOCALE
2006-11-25 13:07:29 -07:00
char *dp;
static char ldp = 0;
2013-08-17 10:00:54 -06:00
# endif
2006-11-25 13:07:29 -07:00
if (fd < 0)
{
if (fd == -2 ||
(fd = open("/proc/loadavg", O_RDONLY)) < 0)
{
fd = -2;
*(double *)call_data = 0.0;
return;
}
2013-08-17 10:00:54 -06:00
# ifndef X_LOCALE
2006-11-25 13:07:29 -07:00
ldp = *localeconv()->decimal_point;
2013-08-17 10:00:54 -06:00
# endif
2006-11-25 13:07:29 -07:00
}
else
lseek(fd, 0, 0);
if ((n = read(fd, buf, sizeof(buf)-1)) > 0) {
2013-08-17 10:00:54 -06:00
# ifndef X_LOCALE
2006-11-25 13:07:29 -07:00
if (ldp != '.')
while ((dp = memchr(buf,'.',sizeof(buf)-1)) != NULL) {
*(char *)dp = ldp;
}
2013-08-17 10:00:54 -06:00
# endif
2006-11-25 13:07:29 -07:00
if (sscanf(buf, "%lf", (double *)call_data) == 1)
return;
}
2013-08-17 10:00:54 -06:00
2006-11-25 13:07:29 -07:00
*(double *)call_data = 0.0; /* temporary hiccup */
return;
}
2013-08-17 10:00:54 -06:00
# else /* linux */
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
# ifdef __GNU__
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
# include <mach.h>
2006-11-25 13:07:29 -07:00
static processor_set_t default_set;
2012-04-07 09:57:21 -06:00
void InitLoadPoint(void)
2006-11-25 13:07:29 -07:00
{
if (processor_set_default (mach_host_self (), &default_set) != KERN_SUCCESS)
xload_error("cannot get processor_set_default", "");
}
/* ARGSUSED */
2012-04-07 09:57:21 -06:00
void GetLoadPoint(
Widget w, /* unused */
XtPointer closure, /* unused */
XtPointer call_data) /* pointer to (double) return value */
2006-11-25 13:07:29 -07:00
{
host_t host;
struct processor_set_basic_info info;
unsigned info_count;
info_count = PROCESSOR_SET_BASIC_INFO_COUNT;
if (processor_set_info (default_set, PROCESSOR_SET_BASIC_INFO, &host,
(processor_set_info_t) &info, &info_count)
!= KERN_SUCCESS)
{
InitLoadPoint();
info.load_average = 0;
}
*(double *)call_data = info.load_average * 1000 / LOAD_SCALE;
return;
}
2013-08-17 10:00:54 -06:00
# else /* __GNU__ */
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
# ifdef __APPLE__
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
# include <mach/mach.h>
2006-11-25 13:07:29 -07:00
static mach_port_t host_priv_port;
2012-04-07 09:57:21 -06:00
void InitLoadPoint(void)
2006-11-25 13:07:29 -07:00
{
host_priv_port = mach_host_self();
}
/* ARGSUSED */
2012-04-07 09:57:21 -06:00
void GetLoadPoint(
Widget w, /* unused */
XtPointer closure, /* unused */
XtPointer call_data) /* pointer to (double) return value */
2006-11-25 13:07:29 -07:00
{
double *loadavg = (double *)call_data;
struct host_load_info load_data;
int host_count;
kern_return_t kr;
host_count = sizeof(load_data)/sizeof(integer_t);
kr = host_statistics(host_priv_port, HOST_LOAD_INFO,
(host_info_t)&load_data, &host_count);
if (kr != KERN_SUCCESS)
xload_error("cannot get host statistics", "");
*loadavg = (double)load_data.avenrun[0]/LOAD_SCALE;
return;
}
2013-08-17 10:00:54 -06:00
# else /* __APPLE__ */
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
# ifdef LOADSTUB
2006-11-25 13:07:29 -07:00
void InitLoadPoint()
{
}
/* ARGSUSED */
void GetLoadPoint( w, closure, call_data )
Widget w; /* unused */
XtPointer closure; /* unused */
XtPointer call_data; /* pointer to (double) return value */
{
*(double *)call_data = 1.0;
}
2013-08-17 10:00:54 -06:00
# else /* not LOADSTUB */
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
# ifdef __osf__
2006-11-25 13:07:29 -07:00
void InitLoadPoint()
{
}
/*ARGSUSED*/
void GetLoadPoint( w, closure, call_data )
Widget w; /* unused */
XtPointer closure; /* unused */
XtPointer call_data; /* pointer to (double) return value */
{
double *loadavg = (double *)call_data;
struct tbl_loadavg load_data;
if (table(TBL_LOADAVG, 0, (char *)&load_data, 1, sizeof(load_data)) < 0)
xload_error("error reading load average", "");
*loadavg = (load_data.tl_lscale == 0) ?
load_data.tl_avenrun.d[WHICH_AVG] :
load_data.tl_avenrun.l[WHICH_AVG] / (double)load_data.tl_lscale;
}
2013-08-17 10:00:54 -06:00
# else /* not __osf__ */
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
# ifdef __QNXNTO__
# include <time.h>
# include <sys/neutrino.h>
2006-11-25 13:07:29 -07:00
static _Uint64t nto_idle = 0, nto_idle_last = 0;
static int nto_idle_id;
static struct timespec nto_now, nto_last;
void
2012-04-07 09:57:21 -06:00
InitLoadPoint(void)
2006-11-25 13:07:29 -07:00
{
nto_idle_id = ClockId(1, 1); /* Idle thread */
ClockTime(nto_idle_id, NULL, &nto_idle_last);
clock_gettime( CLOCK_REALTIME, &nto_last);
}
/* ARGSUSED */
void
2012-04-07 09:57:21 -06:00
GetLoadPoint( /* QNX NTO version */
Widget w, /* unused */
XtPointer closure, /* unused */
XtPointer call_data) /* pointer to (double) return value */
2006-11-25 13:07:29 -07:00
{
double *loadavg = (double *)call_data;
double timediff;
double temp = 0.0;
ClockTime(nto_idle_id, NULL, &nto_idle);
clock_gettime( CLOCK_REALTIME, &nto_now);
timediff = 1000000000.0 * (nto_now.tv_sec - nto_last.tv_sec)
+ (nto_now.tv_nsec - nto_last.tv_nsec);
temp = 1.0 - (nto_idle-nto_idle_last)/timediff;
*loadavg = temp >= 0 ? temp : 0;
nto_idle_last = nto_idle;
nto_last = nto_now;
}
2013-08-17 10:00:54 -06:00
# else /* not __QNXNTO__ */
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
# ifdef __bsdi__
# include <kvm.h>
2006-11-25 13:07:29 -07:00
static struct nlist nl[] = {
{ "_averunnable" },
2013-08-17 10:00:54 -06:00
# define X_AVERUNNABLE 0
2006-11-25 13:07:29 -07:00
{ "_fscale" },
2013-08-17 10:00:54 -06:00
# define X_FSCALE 1
2006-11-25 13:07:29 -07:00
{ "" },
};
static kvm_t *kd;
static int fscale;
2012-04-07 09:57:21 -06:00
void InitLoadPoint(void)
2006-11-25 13:07:29 -07:00
{
fixpt_t averunnable[3]; /* unused really */
if ((kd = kvm_openfiles(NULL, NULL, NULL, O_RDONLY, NULL)) == NULL)
xload_error("can't open kvm files", "");
if (kvm_nlist(kd, nl) != 0)
xload_error("can't read name list", "");
if (kvm_read(kd, (off_t)nl[X_AVERUNNABLE].n_value, (char *)averunnable,
sizeof(averunnable)) != sizeof(averunnable))
xload_error("couldn't obtain _averunnable variable", "");
if (kvm_read(kd, (off_t)nl[X_FSCALE].n_value, (char *)&fscale,
sizeof(fscale)) != sizeof(fscale))
xload_error("couldn't obtain _fscale variable", "");
return;
}
2012-04-07 09:57:21 -06:00
void GetLoadPoint(
Widget w, /* unused */
XtPointer closure, /* unused */
XtPointer call_data) /* ptr to (double) return value */
2006-11-25 13:07:29 -07:00
{
double *loadavg = (double *)call_data;
fixpt_t t;
if (kvm_read(kd, (off_t)nl[X_AVERUNNABLE].n_value, (char *)&t,
sizeof(t)) != sizeof(t))
xload_error("couldn't obtain load average", "");
*loadavg = (double)t/fscale;
return;
}
2013-08-17 10:00:54 -06:00
# else /* not __bsdi__ */
# ifndef KMEM_FILE
# define KMEM_FILE "/dev/kmem"
# endif
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
# ifndef KERNEL_FILE
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
# ifdef hpux
# define KERNEL_FILE "/hp-ux"
# endif /* hpux */
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
# ifdef sgi
# if (OSMAJORVERSION > 4)
# define KERNEL_FILE "/unix"
# endif
# endif
2006-11-25 13:07:29 -07:00
/*
* provide default for everyone else
*/
2013-08-17 10:00:54 -06:00
# ifndef KERNEL_FILE
# ifdef SVR4
# define KERNEL_FILE "/stand/unix"
# else
# ifdef SYSV
# define KERNEL_FILE "/unix"
# else
2006-11-25 13:07:29 -07:00
/* If a BSD system, check in <paths.h> */
2013-08-17 10:00:54 -06:00
# ifdef BSD
# include <paths.h>
# ifdef _PATH_UNIX
# define KERNEL_FILE _PATH_UNIX
# else
# ifdef _PATH_KERNEL
# define KERNEL_FILE _PATH_KERNEL
# else
# define KERNEL_FILE "/vmunix"
# endif
# endif
# else /* BSD */
# define KERNEL_FILE "/vmunix"
# endif /* BSD */
# endif /* SYSV */
# endif /* SVR4 */
# endif /* KERNEL_FILE */
# endif /* KERNEL_FILE */
# ifndef KERNEL_LOAD_VARIABLE
# if defined(BSD) && (BSD >= 199103)
# define KERNEL_LOAD_VARIABLE "_averunnable"
# endif /* BSD >= 199103 */
# ifdef hpux
# ifdef __hp9000s800
# define KERNEL_LOAD_VARIABLE "avenrun"
# endif /* hp9000s800 */
# endif /* hpux */
# ifdef sgi
2006-11-25 13:07:29 -07:00
# define KERNEL_LOAD_VARIABLE "avenrun"
2013-08-17 10:00:54 -06:00
# endif /* sgi */
2006-11-25 13:07:29 -07:00
2013-08-17 10:00:54 -06:00
# endif /* KERNEL_LOAD_VARIABLE */
2006-11-25 13:07:29 -07:00
/*
* provide default for everyone else
*/
2013-08-17 10:00:54 -06:00
# ifndef KERNEL_LOAD_VARIABLE
# ifdef USG
# define KERNEL_LOAD_VARIABLE "sysinfo"
# define SYSINFO
# else
# ifdef SVR4
# define KERNEL_LOAD_VARIABLE "avenrun"
# else
# define KERNEL_LOAD_VARIABLE "_avenrun"
# endif
# endif
# endif /* KERNEL_LOAD_VARIABLE */
2006-11-25 13:07:29 -07:00
static struct nlist namelist[] = { /* namelist for vmunix grubbing */
2013-08-17 10:00:54 -06:00
# define LOADAV 0
2006-11-25 13:07:29 -07:00
{KERNEL_LOAD_VARIABLE},
{0}
};
static int kmem;
static long loadavg_seek;
void InitLoadPoint()
{
2013-08-17 10:00:54 -06:00
# if !defined(SVR4) && !defined(sgi) && !defined(AIXV5) && !(BSD >= 199103) && !defined(__APPLE__)
2006-11-25 13:07:29 -07:00
extern void nlist();
2013-08-17 10:00:54 -06:00
# endif
2006-11-25 13:07:29 -07:00
nlist( KERNEL_FILE, namelist);
/*
* Some systems appear to set only one of these to Zero if the entry could
* not be found, I hope no_one returns Zero as a good value, or bad things
* will happen to you. (I have a hard time believing the value will
* ever really be zero anyway). CDP 5/17/89.
*/
if (namelist[LOADAV].n_type == 0 ||
namelist[LOADAV].n_value == 0) {
xload_error("cannot get name list from", KERNEL_FILE);
exit(-1);
}
loadavg_seek = namelist[LOADAV].n_value;
kmem = open(KMEM_FILE, O_RDONLY);
if (kmem < 0) xload_error("cannot open", KMEM_FILE);
}
/* ARGSUSED */
void GetLoadPoint( w, closure, call_data )
Widget w; /* unused */
XtPointer closure; /* unused */
XtPointer call_data; /* pointer to (double) return value */
{
double *loadavg = (double *)call_data;
(void) lseek(kmem, loadavg_seek, 0);
2013-08-17 10:00:54 -06:00
# if defined(SVR4) || defined(sgi) || (BSD >= 199103)
2006-11-25 13:07:29 -07:00
{
long temp;
(void) read(kmem, (char *)&temp, sizeof(long));
*loadavg = (double)temp/FSCALE;
}
2013-08-17 10:00:54 -06:00
# else /* else not SVR4 or sgi or BSD */
2006-11-25 13:07:29 -07:00
(void) read(kmem, (char *)loadavg, sizeof(double));
2013-08-17 10:00:54 -06:00
# endif /* SVR4 or ... else */
2006-11-25 13:07:29 -07:00
return;
}
2013-08-17 10:00:54 -06:00
# endif /* __bsdi__ else */
# endif /* __QNXNTO__ else */
# endif /* __osf__ else */
# endif /* LOADSTUB else */
# endif /* __APPLE__ else */
# endif /* __GNU__ else */
# endif /* linux else */
# endif /* SYSV && i386 else */
# endif /* HAVE_GETLOADAVG else */
2006-11-25 13:07:29 -07:00
2012-04-07 09:57:21 -06:00
static void xload_error(const char *str1, const char *str2)
2006-11-25 13:07:29 -07:00
{
(void) fprintf(stderr,"xload: %s %s\n", str1, str2);
2013-08-17 10:00:54 -06:00
# ifdef __bsdi__
2006-11-25 13:07:29 -07:00
if (kd)
kvm_close(kd);
2013-08-17 10:00:54 -06:00
# endif
2006-11-25 13:07:29 -07:00
exit(-1);
}
#endif /* END of __CYGWIN__ */