X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=src%2Fgetloadavg.c;h=b8161e49b04fa7545090e80e92ae02e3327480a3;hb=80f378f2fbc0d224e740d3e9c6a83ae1b5706cfa;hp=9af7e53bec6909079aca471902208d6a4b1867fa;hpb=6883ee56ec887c2c48abe5b06b5e66aa74031910;p=chise%2Fxemacs-chise.git- diff --git a/src/getloadavg.c b/src/getloadavg.c index 9af7e53..b8161e4 100644 --- a/src/getloadavg.c +++ b/src/getloadavg.c @@ -19,8 +19,6 @@ along with XEmacs; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#ifndef __CYGWIN32__ - /* Compile-time symbols that this file uses: FIXUP_KERNEL_SYMBOL_ADDR() Adjust address in returned struct nlist. @@ -58,7 +56,7 @@ Boston, MA 02111-1307, USA. */ __linux__ Linux: assumes /proc filesystem mounted. Support from Michael K. Johnson. __NetBSD__ NetBSD: assumes /kern filesystem mounted. - __OpenBSD__ OpenBSD: dito. + __OpenBSD__ OpenBSD: ditto. In addition, to avoid nesting many #ifdefs, we internally set LDAV_DONE to indicate that the load average has been computed. @@ -71,6 +69,9 @@ Boston, MA 02111-1307, USA. */ #include #endif +#ifndef WINDOWSNT +#ifndef __CYGWIN32__ + #include /* Both the Emacs and non-Emacs sections want this. Some @@ -563,7 +564,8 @@ getloadavg (double loadavg[], int nelem) } for (elem = 0; elem < nelem; elem++) { - kstat_named_t *kn = kstat_data_lookup (ksp, avestrings[elem]); + kstat_named_t *kn = + (kstat_named_t *) kstat_data_lookup (ksp, avestrings[elem]); if (!kn) { kstat_close (kc); @@ -1005,4 +1007,4 @@ getloadavg (double loadavg[], int nelem) } #endif /*__GNUWIN32__*/ - +#endif /* WINDOWSNT */