summaryrefslogtreecommitdiff
path: root/getloadavg.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1996-05-22 21:47:37 +0000
committerRoland McGrath <roland@redhat.com>1996-05-22 21:47:37 +0000
commitd369e0531ab0715a05ac72c86f3d2fddcb8c817c (patch)
tree72c44931b538218f4ea1a34b3309328794d6a186 /getloadavg.c
parent6701f24bbb22b4f03789498d35e1310e776c7b98 (diff)
downloadgunmake-d369e0531ab0715a05ac72c86f3d2fddcb8c817c.tar.gz
[WIN32]: No-op as for [MSDOS].
Diffstat (limited to 'getloadavg.c')
-rw-r--r--getloadavg.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/getloadavg.c b/getloadavg.c
index 598c505..1fe78bd 100644
--- a/getloadavg.c
+++ b/getloadavg.c
@@ -43,6 +43,7 @@
DGUX
eunice UNIX emulator under VMS.
hpux
+ MSDOS No-op for MSDOS.
NeXT
sgi
sequent Sequent Dynix 3.x.x (BSD)
@@ -51,6 +52,7 @@
UMAX
UMAX4_3
VMS
+ WIN32 No-op for Windows95/NT.
__linux__ Linux: assumes /proc filesystem mounted.
Support from Michael K. Johnson.
__NetBSD__ NetBSD: assumes /kern filesystem mounted.
@@ -733,11 +735,11 @@ getloadavg (loadavg, nelem)
: (load_ave.tl_avenrun.l[0] / (double) load_ave.tl_lscale));
#endif /* OSF_MIPS */
-#if !defined (LDAV_DONE) && defined(MSDOS)
+#if !defined (LDAV_DONE) && (defined (MSDOS) || defined (WIN32))
#define LDAV_DONE
/* A faithful emulation is going to have to be saved for a rainy day. */
- for ( ; elem < nelem; elem++)
+ for ( ; elem < nelem; elem++)
{
loadavg[elem] = 0.0;
}
@@ -866,7 +868,7 @@ getloadavg (loadavg, nelem)
/* We pass 0 for the kernel, corefile, and swapfile names
to use the currently running kernel. */
kd = kvm_open (0, 0, 0, O_RDONLY, 0);
- if (kd != 0)
+ if (kd != 0)
{
/* nlist the currently running kernel. */
kvm_nlist (kd, nl);