Sync from coreutils.
[gnulib.git] / lib / getloadavg.c
1 /* Get the system load averages.
2
3    Copyright (C) 1985, 1986, 1987, 1988, 1989, 1991, 1992, 1993, 1994,
4    1995, 1997, 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc.
5
6    NOTE: The canonical source of this file is maintained with gnulib.
7    Bugs can be reported to bug-gnulib@gnu.org.
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2, or (at your option)
12    any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
22    USA.  */
23
24 /* Compile-time symbols that this file uses:
25
26    HAVE_PSTAT_GETDYNAMIC        Define this if your system has the
27                                 pstat_getdynamic function.  I think it
28                                 is unique to HPUX9.  The best way to get the
29                                 definition is through the AC_FUNC_GETLOADAVG
30                                 macro that comes with autoconf 2.13 or newer.
31                                 If that isn't an option, then just put
32                                 AC_CHECK_FUNCS(pstat_getdynamic) in your
33                                 configure.in file.
34    FIXUP_KERNEL_SYMBOL_ADDR()   Adjust address in returned struct nlist.
35    KERNEL_FILE                  Name of the kernel file to nlist.
36    LDAV_CVT()                   Scale the load average from the kernel.
37                                 Returns a double.
38    LDAV_SYMBOL                  Name of kernel symbol giving load average.
39    LOAD_AVE_TYPE                Type of the load average array in the kernel.
40                                 Must be defined unless one of
41                                 apollo, DGUX, NeXT, or UMAX is defined;
42                                 or we have libkstat;
43                                 otherwise, no load average is available.
44    HAVE_NLIST_H                 nlist.h is available.  NLIST_STRUCT defaults
45                                 to this.
46    NLIST_STRUCT                 Include nlist.h, not a.out.h, and
47                                 the nlist n_name element is a pointer,
48                                 not an array.
49    HAVE_STRUCT_NLIST_N_UN_N_NAME `n_un.n_name' is member of `struct nlist'.
50    LINUX_LDAV_FILE              [__linux__]: File containing load averages.
51
52    Specific system predefines this file uses, aside from setting
53    default values if not emacs:
54
55    apollo
56    BSD                          Real BSD, not just BSD-like.
57    convex
58    DGUX
59    eunice                       UNIX emulator under VMS.
60    hpux
61    __MSDOS__                    No-op for MSDOS.
62    NeXT
63    sgi
64    sequent                      Sequent Dynix 3.x.x (BSD)
65    _SEQUENT_                    Sequent DYNIX/ptx 1.x.x (SYSV)
66    sony_news                    NEWS-OS (works at least for 4.1C)
67    UMAX
68    UMAX4_3
69    VMS
70    WINDOWS32                    No-op for Windows95/NT.
71    __linux__                    Linux: assumes /proc file system mounted.
72                                 Support from Michael K. Johnson.
73    __NetBSD__                   NetBSD: assumes /kern file system mounted.
74
75    In addition, to avoid nesting many #ifdefs, we internally set
76    LDAV_DONE to indicate that the load average has been computed.
77
78    We also #define LDAV_PRIVILEGED if a program will require
79    special installation to be able to call getloadavg.  */
80
81 /* This should always be first.  */
82 #ifdef HAVE_CONFIG_H
83 # include <config.h>
84 #endif
85
86 #include <errno.h>
87 #include <stdbool.h>
88 #include <stdio.h>
89 #include <stdlib.h>
90
91 /* Exclude all the code except the test program at the end
92    if the system has its own `getloadavg' function.  */
93
94 #ifndef HAVE_GETLOADAVG
95
96 # include <sys/types.h>
97
98 /* Both the Emacs and non-Emacs sections want this.  Some
99    configuration files' definitions for the LOAD_AVE_CVT macro (like
100    sparc.h's) use macros like FSCALE, defined here.  */
101 # if defined (unix) || defined (__unix)
102 #  include <sys/param.h>
103 # endif
104
105 # include "c-strtod.h"
106 # include "cloexec.h"
107 # include "intprops.h"
108 # include "xalloc.h"
109
110 /* The existing Emacs configuration files define a macro called
111    LOAD_AVE_CVT, which accepts a value of type LOAD_AVE_TYPE, and
112    returns the load average multiplied by 100.  What we actually want
113    is a macro called LDAV_CVT, which returns the load average as an
114    unmultiplied double.
115
116    For backwards compatibility, we'll define LDAV_CVT in terms of
117    LOAD_AVE_CVT, but future machine config files should just define
118    LDAV_CVT directly.  */
119
120 # if !defined (LDAV_CVT) && defined (LOAD_AVE_CVT)
121 #  define LDAV_CVT(n) (LOAD_AVE_CVT (n) / 100.0)
122 # endif
123
124 # if !defined (BSD) && defined (ultrix)
125 /* Ultrix behaves like BSD on Vaxen.  */
126 #  define BSD
127 # endif
128
129 # ifdef NeXT
130 /* NeXT in the 2.{0,1,2} releases defines BSD in <sys/param.h>, which
131    conflicts with the definition understood in this file, that this
132    really is BSD. */
133 #  undef BSD
134
135 /* NeXT defines FSCALE in <sys/param.h>.  However, we take FSCALE being
136    defined to mean that the nlist method should be used, which is not true.  */
137 #  undef FSCALE
138 # endif
139
140 /* Same issues as for NeXT apply to the HURD-based GNU system.  */
141 # ifdef __GNU__
142 #  undef BSD
143 #  undef FSCALE
144 # endif /* __GNU__ */
145
146 /* Set values that are different from the defaults, which are
147    set a little farther down with #ifndef.  */
148
149
150 /* Some shorthands.  */
151
152 # if defined (HPUX) && !defined (hpux)
153 #  define hpux
154 # endif
155
156 # if defined (__hpux) && !defined (hpux)
157 #  define hpux
158 # endif
159
160 # if defined (__sun) && !defined (sun)
161 #  define sun
162 # endif
163
164 # if defined (hp300) && !defined (hpux)
165 #  define MORE_BSD
166 # endif
167
168 # if defined (ultrix) && defined (mips)
169 #  define decstation
170 # endif
171
172 # if defined (__SVR4) && !defined (SVR4)
173 #  define SVR4
174 # endif
175
176 # if (defined (sun) && defined (SVR4)) || defined (SOLARIS2)
177 #  define SUNOS_5
178 # endif
179
180 # if defined (__osf__) && (defined (__alpha) || defined (__alpha__))
181 #  define OSF_ALPHA
182 #  include <sys/mbuf.h>
183 #  include <sys/socket.h>
184 #  include <net/route.h>
185 #  include <sys/table.h>
186 # endif
187
188 # if defined (__osf__) && (defined (mips) || defined (__mips__))
189 #  define OSF_MIPS
190 #  include <sys/table.h>
191 # endif
192
193 /* UTek's /bin/cc on the 4300 has no architecture specific cpp define by
194    default, but _MACH_IND_SYS_TYPES is defined in <sys/types.h>.  Combine
195    that with a couple of other things and we'll have a unique match.  */
196 # if !defined (tek4300) && defined (unix) && defined (m68k) && defined (mc68000) && defined (mc68020) && defined (_MACH_IND_SYS_TYPES)
197 #  define tek4300                       /* Define by emacs, but not by other users.  */
198 # endif
199
200
201 /* VAX C can't handle multi-line #ifs, or lines longer than 256 chars.  */
202 # ifndef LOAD_AVE_TYPE
203
204 #  ifdef MORE_BSD
205 #   define LOAD_AVE_TYPE long
206 #  endif
207
208 #  ifdef sun
209 #   define LOAD_AVE_TYPE long
210 #  endif
211
212 #  ifdef decstation
213 #   define LOAD_AVE_TYPE long
214 #  endif
215
216 #  ifdef _SEQUENT_
217 #   define LOAD_AVE_TYPE long
218 #  endif
219
220 #  ifdef sgi
221 #   define LOAD_AVE_TYPE long
222 #  endif
223
224 #  ifdef SVR4
225 #   define LOAD_AVE_TYPE long
226 #  endif
227
228 #  ifdef sony_news
229 #   define LOAD_AVE_TYPE long
230 #  endif
231
232 #  ifdef sequent
233 #   define LOAD_AVE_TYPE long
234 #  endif
235
236 #  ifdef OSF_ALPHA
237 #   define LOAD_AVE_TYPE long
238 #  endif
239
240 #  if defined (ardent) && defined (titan)
241 #   define LOAD_AVE_TYPE long
242 #  endif
243
244 #  ifdef tek4300
245 #   define LOAD_AVE_TYPE long
246 #  endif
247
248 #  if defined (alliant) && defined (i860) /* Alliant FX/2800 */
249 #   define LOAD_AVE_TYPE long
250 #  endif
251
252 #  ifdef _AIX
253 #   define LOAD_AVE_TYPE long
254 #  endif
255
256 #  ifdef convex
257 #   define LOAD_AVE_TYPE double
258 #   ifndef LDAV_CVT
259 #    define LDAV_CVT(n) (n)
260 #   endif
261 #  endif
262
263 # endif /* No LOAD_AVE_TYPE.  */
264
265 # ifdef OSF_ALPHA
266 /* <sys/param.h> defines an incorrect value for FSCALE on Alpha OSF/1,
267    according to ghazi@noc.rutgers.edu.  */
268 #  undef FSCALE
269 #  define FSCALE 1024.0
270 # endif
271
272 # if defined (alliant) && defined (i860) /* Alliant FX/2800 */
273 /* <sys/param.h> defines an incorrect value for FSCALE on an
274    Alliant FX/2800 Concentrix 2.2, according to ghazi@noc.rutgers.edu.  */
275 #  undef FSCALE
276 #  define FSCALE 100.0
277 # endif
278
279
280 # ifndef        FSCALE
281
282 /* SunOS and some others define FSCALE in sys/param.h.  */
283
284 #  ifdef MORE_BSD
285 #   define FSCALE 2048.0
286 #  endif
287
288 #  if defined (MIPS) || defined (SVR4) || defined (decstation)
289 #   define FSCALE 256
290 #  endif
291
292 #  if defined (sgi) || defined (sequent)
293 /* Sometimes both MIPS and sgi are defined, so FSCALE was just defined
294    above under #ifdef MIPS.  But we want the sgi value.  */
295 #   undef FSCALE
296 #   define FSCALE 1000.0
297 #  endif
298
299 #  if defined (ardent) && defined (titan)
300 #   define FSCALE 65536.0
301 #  endif
302
303 #  ifdef tek4300
304 #   define FSCALE 100.0
305 #  endif
306
307 #  ifdef _AIX
308 #   define FSCALE 65536.0
309 #  endif
310
311 # endif /* Not FSCALE.  */
312
313 # if !defined (LDAV_CVT) && defined (FSCALE)
314 #  define LDAV_CVT(n) (((double) (n)) / FSCALE)
315 # endif
316
317 # ifndef NLIST_STRUCT
318 #  if HAVE_NLIST_H
319 #   define NLIST_STRUCT
320 #  endif
321 # endif
322
323 # if defined (sgi) || (defined (mips) && !defined (BSD))
324 #  define FIXUP_KERNEL_SYMBOL_ADDR(nl) ((nl)[0].n_value &= ~(1 << 31))
325 # endif
326
327
328 # if !defined (KERNEL_FILE) && defined (sequent)
329 #  define KERNEL_FILE "/dynix"
330 # endif
331
332 # if !defined (KERNEL_FILE) && defined (hpux)
333 #  define KERNEL_FILE "/hp-ux"
334 # endif
335
336 # if !defined (KERNEL_FILE) && (defined (_SEQUENT_) || defined (MIPS) || defined (SVR4) || defined (ISC) || defined (sgi) || (defined (ardent) && defined (titan)))
337 #  define KERNEL_FILE "/unix"
338 # endif
339
340
341 # if !defined (LDAV_SYMBOL) && defined (alliant)
342 #  define LDAV_SYMBOL "_Loadavg"
343 # endif
344
345 # if !defined (LDAV_SYMBOL) && ((defined (hpux) && !defined (hp9000s300)) || defined (_SEQUENT_) || defined (SVR4) || defined (ISC) || defined (sgi) || (defined (ardent) && defined (titan)) || defined (_AIX))
346 #  define LDAV_SYMBOL "avenrun"
347 # endif
348
349 # ifdef HAVE_UNISTD_H
350 #  include <unistd.h>
351 # endif
352
353 /* LOAD_AVE_TYPE should only get defined if we're going to use the
354    nlist method.  */
355 # if !defined (LOAD_AVE_TYPE) && (defined (BSD) || defined (LDAV_CVT) || defined (KERNEL_FILE) || defined (LDAV_SYMBOL))
356 #  define LOAD_AVE_TYPE double
357 # endif
358
359 # ifdef LOAD_AVE_TYPE
360
361 #  ifndef VMS
362 #   ifndef __linux__
363 #    ifndef NLIST_STRUCT
364 #     include <a.out.h>
365 #    else /* NLIST_STRUCT */
366 #     include <nlist.h>
367 #    endif /* NLIST_STRUCT */
368
369 #    ifdef SUNOS_5
370 #     include <fcntl.h>
371 #     include <kvm.h>
372 #     include <kstat.h>
373 #    endif
374
375 #    if defined (hpux) && defined (HAVE_PSTAT_GETDYNAMIC)
376 #     include <sys/pstat.h>
377 #    endif
378
379 #    ifndef KERNEL_FILE
380 #     define KERNEL_FILE "/vmunix"
381 #    endif /* KERNEL_FILE */
382
383 #    ifndef LDAV_SYMBOL
384 #     define LDAV_SYMBOL "_avenrun"
385 #    endif /* LDAV_SYMBOL */
386 #   endif /* __linux__ */
387
388 #  else /* VMS */
389
390 #   ifndef eunice
391 #    include <iodef.h>
392 #    include <descrip.h>
393 #   else /* eunice */
394 #    include <vms/iodef.h>
395 #   endif /* eunice */
396 #  endif /* VMS */
397
398 #  ifndef LDAV_CVT
399 #   define LDAV_CVT(n) ((double) (n))
400 #  endif /* !LDAV_CVT */
401
402 # endif /* LOAD_AVE_TYPE */
403
404 # if defined (__GNU__) && !defined (NeXT)
405 /* Note that NeXT Openstep defines __GNU__ even though it should not.  */
406 /* GNU system acts much like NeXT, for load average purposes,
407    but not exactly.  */
408 #  define NeXT
409 #  define host_self mach_host_self
410 # endif
411
412 # ifdef NeXT
413 #  ifdef HAVE_MACH_MACH_H
414 #   include <mach/mach.h>
415 #  else
416 #   include <mach.h>
417 #  endif
418 # endif /* NeXT */
419
420 # ifdef sgi
421 #  include <sys/sysmp.h>
422 # endif /* sgi */
423
424 # ifdef UMAX
425 #  include <signal.h>
426 #  include <sys/time.h>
427 #  include <sys/wait.h>
428 #  include <sys/syscall.h>
429
430 #  ifdef UMAX_43
431 #   include <machine/cpu.h>
432 #   include <inq_stats/statistics.h>
433 #   include <inq_stats/sysstats.h>
434 #   include <inq_stats/cpustats.h>
435 #   include <inq_stats/procstats.h>
436 #  else /* Not UMAX_43.  */
437 #   include <sys/sysdefs.h>
438 #   include <sys/statistics.h>
439 #   include <sys/sysstats.h>
440 #   include <sys/cpudefs.h>
441 #   include <sys/cpustats.h>
442 #   include <sys/procstats.h>
443 #  endif /* Not UMAX_43.  */
444 # endif /* UMAX */
445
446 # ifdef DGUX
447 #  include <sys/dg_sys_info.h>
448 # endif
449
450 # if defined (HAVE_FCNTL_H) || defined (_POSIX_VERSION)
451 #  include <fcntl.h>
452 # else
453 #  include <sys/file.h>
454 # endif
455
456 # include "unistd-safer.h"
457 \f
458 /* Avoid static vars inside a function since in HPUX they dump as pure.  */
459
460 # ifdef NeXT
461 static processor_set_t default_set;
462 static bool getloadavg_initialized;
463 # endif /* NeXT */
464
465 # ifdef UMAX
466 static unsigned int cpus = 0;
467 static unsigned int samples;
468 # endif /* UMAX */
469
470 # ifdef DGUX
471 static struct dg_sys_info_load_info load_info;  /* what-a-mouthful! */
472 # endif /* DGUX */
473
474 # if !defined (HAVE_LIBKSTAT) && defined (LOAD_AVE_TYPE)
475 /* File descriptor open to /dev/kmem or VMS load ave driver.  */
476 static int channel;
477 /* True iff channel is valid.  */
478 static bool getloadavg_initialized;
479 /* Offset in kmem to seek to read load average, or 0 means invalid.  */
480 static long offset;
481
482 #  if !defined (VMS) && !defined (sgi) && !defined (__linux__)
483 static struct nlist nl[2];
484 #  endif /* Not VMS or sgi */
485
486 #  ifdef SUNOS_5
487 static kvm_t *kd;
488 #  endif /* SUNOS_5 */
489
490 # endif /* LOAD_AVE_TYPE && !HAVE_LIBKSTAT */
491 \f
492 /* Put the 1 minute, 5 minute and 15 minute load averages
493    into the first NELEM elements of LOADAVG.
494    Return the number written (never more than 3, but may be less than NELEM),
495    or -1 if an error occurred.  */
496
497 int
498 getloadavg (double loadavg[], int nelem)
499 {
500   int elem = 0;                 /* Return value.  */
501
502 # ifdef NO_GET_LOAD_AVG
503 #  define LDAV_DONE
504   /* Set errno to zero to indicate that there was no particular error;
505      this function just can't work at all on this system.  */
506   errno = 0;
507   elem = -1;
508 # endif
509
510 # if !defined (LDAV_DONE) && defined (HAVE_LIBKSTAT)
511 /* Use libkstat because we don't have to be root.  */
512 #  define LDAV_DONE
513   kstat_ctl_t *kc;
514   kstat_t *ksp;
515   kstat_named_t *kn;
516
517   kc = kstat_open ();
518   if (kc == 0)
519     return -1;
520   ksp = kstat_lookup (kc, "unix", 0, "system_misc");
521   if (ksp == 0)
522     return -1;
523   if (kstat_read (kc, ksp, 0) == -1)
524     return -1;
525
526
527   kn = kstat_data_lookup (ksp, "avenrun_1min");
528   if (kn == 0)
529     {
530       /* Return -1 if no load average information is available.  */
531       nelem = 0;
532       elem = -1;
533     }
534
535   if (nelem >= 1)
536     loadavg[elem++] = (double) kn->value.ul / FSCALE;
537
538   if (nelem >= 2)
539     {
540       kn = kstat_data_lookup (ksp, "avenrun_5min");
541       if (kn != 0)
542         {
543           loadavg[elem++] = (double) kn->value.ul / FSCALE;
544
545           if (nelem >= 3)
546             {
547               kn = kstat_data_lookup (ksp, "avenrun_15min");
548               if (kn != 0)
549                 loadavg[elem++] = (double) kn->value.ul / FSCALE;
550             }
551         }
552     }
553
554   kstat_close (kc);
555 # endif /* HAVE_LIBKSTAT */
556
557 # if !defined (LDAV_DONE) && defined (hpux) && defined (HAVE_PSTAT_GETDYNAMIC)
558 /* Use pstat_getdynamic() because we don't have to be root.  */
559 #  define LDAV_DONE
560 #  undef LOAD_AVE_TYPE
561
562   struct pst_dynamic dyn_info;
563   if (pstat_getdynamic (&dyn_info, sizeof (dyn_info), 0, 0) < 0)
564     return -1;
565   if (nelem > 0)
566     loadavg[elem++] = dyn_info.psd_avg_1_min;
567   if (nelem > 1)
568     loadavg[elem++] = dyn_info.psd_avg_5_min;
569   if (nelem > 2)
570     loadavg[elem++] = dyn_info.psd_avg_15_min;
571
572 # endif /* hpux && HAVE_PSTAT_GETDYNAMIC */
573
574 # if !defined (LDAV_DONE) && defined (__linux__)
575 #  define LDAV_DONE
576 #  undef LOAD_AVE_TYPE
577
578 #  ifndef LINUX_LDAV_FILE
579 #   define LINUX_LDAV_FILE "/proc/loadavg"
580 #  endif
581
582   char ldavgbuf[3 * (INT_STRLEN_BOUND (long int) + sizeof ".00")];
583   char const *ptr = ldavgbuf;
584   int fd, count;
585
586   fd = open (LINUX_LDAV_FILE, O_RDONLY);
587   if (fd == -1)
588     return -1;
589   count = read (fd, ldavgbuf, sizeof ldavgbuf - 1);
590   (void) close (fd);
591   if (count <= 0)
592     return -1;
593   ldavgbuf[count] = '\0';
594
595   for (elem = 0; elem < nelem; elem++)
596     {
597       char *endptr;
598       double d = c_strtod (ptr, &endptr);
599       if (ptr == endptr)
600         {
601           if (elem == 0)
602             return -1;
603           break;
604         }
605       loadavg[elem] = d;
606       ptr = endptr;
607     }
608
609   return elem;
610
611 # endif /* __linux__ */
612
613 # if !defined (LDAV_DONE) && defined (__NetBSD__)
614 #  define LDAV_DONE
615 #  undef LOAD_AVE_TYPE
616
617 #  ifndef NETBSD_LDAV_FILE
618 #   define NETBSD_LDAV_FILE "/kern/loadavg"
619 #  endif
620
621   unsigned long int load_ave[3], scale;
622   int count;
623   FILE *fp;
624
625   fp = fopen (NETBSD_LDAV_FILE, "r");
626   if (fp == NULL)
627     return -1;
628   count = fscanf (fp, "%lu %lu %lu %lu\n",
629                   &load_ave[0], &load_ave[1], &load_ave[2],
630                   &scale);
631   (void) fclose (fp);
632   if (count != 4)
633     return -1;
634
635   for (elem = 0; elem < nelem; elem++)
636     loadavg[elem] = (double) load_ave[elem] / (double) scale;
637
638   return elem;
639
640 # endif /* __NetBSD__ */
641
642 # if !defined (LDAV_DONE) && defined (NeXT)
643 #  define LDAV_DONE
644   /* The NeXT code was adapted from iscreen 3.2.  */
645
646   host_t host;
647   struct processor_set_basic_info info;
648   unsigned int info_count;
649
650   /* We only know how to get the 1-minute average for this system,
651      so even if the caller asks for more than 1, we only return 1.  */
652
653   if (!getloadavg_initialized)
654     {
655       if (processor_set_default (host_self (), &default_set) == KERN_SUCCESS)
656         getloadavg_initialized = true;
657     }
658
659   if (getloadavg_initialized)
660     {
661       info_count = PROCESSOR_SET_BASIC_INFO_COUNT;
662       if (processor_set_info (default_set, PROCESSOR_SET_BASIC_INFO, &host,
663                               (processor_set_info_t) &info, &info_count)
664           != KERN_SUCCESS)
665         getloadavg_initialized = false;
666       else
667         {
668           if (nelem > 0)
669             loadavg[elem++] = (double) info.load_average / LOAD_SCALE;
670         }
671     }
672
673   if (!getloadavg_initialized)
674     return -1;
675 # endif /* NeXT */
676
677 # if !defined (LDAV_DONE) && defined (UMAX)
678 #  define LDAV_DONE
679 /* UMAX 4.2, which runs on the Encore Multimax multiprocessor, does not
680    have a /dev/kmem.  Information about the workings of the running kernel
681    can be gathered with inq_stats system calls.
682    We only know how to get the 1-minute average for this system.  */
683
684   struct proc_summary proc_sum_data;
685   struct stat_descr proc_info;
686   double load;
687   register unsigned int i, j;
688
689   if (cpus == 0)
690     {
691       register unsigned int c, i;
692       struct cpu_config conf;
693       struct stat_descr desc;
694
695       desc.sd_next = 0;
696       desc.sd_subsys = SUBSYS_CPU;
697       desc.sd_type = CPUTYPE_CONFIG;
698       desc.sd_addr = (char *) &conf;
699       desc.sd_size = sizeof conf;
700
701       if (inq_stats (1, &desc))
702         return -1;
703
704       c = 0;
705       for (i = 0; i < conf.config_maxclass; ++i)
706         {
707           struct class_stats stats;
708           bzero ((char *) &stats, sizeof stats);
709
710           desc.sd_type = CPUTYPE_CLASS;
711           desc.sd_objid = i;
712           desc.sd_addr = (char *) &stats;
713           desc.sd_size = sizeof stats;
714
715           if (inq_stats (1, &desc))
716             return -1;
717
718           c += stats.class_numcpus;
719         }
720       cpus = c;
721       samples = cpus < 2 ? 3 : (2 * cpus / 3);
722     }
723
724   proc_info.sd_next = 0;
725   proc_info.sd_subsys = SUBSYS_PROC;
726   proc_info.sd_type = PROCTYPE_SUMMARY;
727   proc_info.sd_addr = (char *) &proc_sum_data;
728   proc_info.sd_size = sizeof (struct proc_summary);
729   proc_info.sd_sizeused = 0;
730
731   if (inq_stats (1, &proc_info) != 0)
732     return -1;
733
734   load = proc_sum_data.ps_nrunnable;
735   j = 0;
736   for (i = samples - 1; i > 0; --i)
737     {
738       load += proc_sum_data.ps_nrun[j];
739       if (j++ == PS_NRUNSIZE)
740         j = 0;
741     }
742
743   if (nelem > 0)
744     loadavg[elem++] = load / samples / cpus;
745 # endif /* UMAX */
746
747 # if !defined (LDAV_DONE) && defined (DGUX)
748 #  define LDAV_DONE
749   /* This call can return -1 for an error, but with good args
750      it's not supposed to fail.  The first argument is for no
751      apparent reason of type `long int *'.  */
752   dg_sys_info ((long int *) &load_info,
753                DG_SYS_INFO_LOAD_INFO_TYPE,
754                DG_SYS_INFO_LOAD_VERSION_0);
755
756   if (nelem > 0)
757     loadavg[elem++] = load_info.one_minute;
758   if (nelem > 1)
759     loadavg[elem++] = load_info.five_minute;
760   if (nelem > 2)
761     loadavg[elem++] = load_info.fifteen_minute;
762 # endif /* DGUX */
763
764 # if !defined (LDAV_DONE) && defined (apollo)
765 #  define LDAV_DONE
766 /* Apollo code from lisch@mentorg.com (Ray Lischner).
767
768    This system call is not documented.  The load average is obtained as
769    three long integers, for the load average over the past minute,
770    five minutes, and fifteen minutes.  Each value is a scaled integer,
771    with 16 bits of integer part and 16 bits of fraction part.
772
773    I'm not sure which operating system first supported this system call,
774    but I know that SR10.2 supports it.  */
775
776   extern void proc1_$get_loadav ();
777   unsigned long load_ave[3];
778
779   proc1_$get_loadav (load_ave);
780
781   if (nelem > 0)
782     loadavg[elem++] = load_ave[0] / 65536.0;
783   if (nelem > 1)
784     loadavg[elem++] = load_ave[1] / 65536.0;
785   if (nelem > 2)
786     loadavg[elem++] = load_ave[2] / 65536.0;
787 # endif /* apollo */
788
789 # if !defined (LDAV_DONE) && defined (OSF_MIPS)
790 #  define LDAV_DONE
791
792   struct tbl_loadavg load_ave;
793   table (TBL_LOADAVG, 0, &load_ave, 1, sizeof (load_ave));
794   loadavg[elem++]
795     = (load_ave.tl_lscale == 0
796        ? load_ave.tl_avenrun.d[0]
797        : (load_ave.tl_avenrun.l[0] / (double) load_ave.tl_lscale));
798 # endif /* OSF_MIPS */
799
800 # if !defined (LDAV_DONE) && (defined (__MSDOS__) || defined (WINDOWS32))
801 #  define LDAV_DONE
802
803   /* A faithful emulation is going to have to be saved for a rainy day.  */
804   for ( ; elem < nelem; elem++)
805     {
806       loadavg[elem] = 0.0;
807     }
808 # endif  /* __MSDOS__ || WINDOWS32 */
809
810 # if !defined (LDAV_DONE) && defined (OSF_ALPHA)
811 #  define LDAV_DONE
812
813   struct tbl_loadavg load_ave;
814   table (TBL_LOADAVG, 0, &load_ave, 1, sizeof (load_ave));
815   for (elem = 0; elem < nelem; elem++)
816     loadavg[elem]
817       = (load_ave.tl_lscale == 0
818          ? load_ave.tl_avenrun.d[elem]
819          : (load_ave.tl_avenrun.l[elem] / (double) load_ave.tl_lscale));
820 # endif /* OSF_ALPHA */
821
822 # if !defined (LDAV_DONE) && defined (VMS)
823   /* VMS specific code -- read from the Load Ave driver.  */
824
825   LOAD_AVE_TYPE load_ave[3];
826   static bool getloadavg_initialized;
827 #  ifdef eunice
828   struct
829   {
830     int dsc$w_length;
831     char *dsc$a_pointer;
832   } descriptor;
833 #  endif
834
835   /* Ensure that there is a channel open to the load ave device.  */
836   if (!getloadavg_initialized)
837     {
838       /* Attempt to open the channel.  */
839 #  ifdef eunice
840       descriptor.dsc$w_length = 18;
841       descriptor.dsc$a_pointer = "$$VMS_LOAD_AVERAGE";
842 #  else
843       $DESCRIPTOR (descriptor, "LAV0:");
844 #  endif
845       if (sys$assign (&descriptor, &channel, 0, 0) & 1)
846         getloadavg_initialized = true;
847     }
848
849   /* Read the load average vector.  */
850   if (getloadavg_initialized
851       && !(sys$qiow (0, channel, IO$_READVBLK, 0, 0, 0,
852                      load_ave, 12, 0, 0, 0, 0) & 1))
853     {
854       sys$dassgn (channel);
855       getloadavg_initialized = false;
856     }
857
858   if (!getloadavg_initialized)
859     return -1;
860 # endif /* VMS */
861
862 # if !defined (LDAV_DONE) && defined (LOAD_AVE_TYPE) && !defined (VMS)
863
864   /* UNIX-specific code -- read the average from /dev/kmem.  */
865
866 #  define LDAV_PRIVILEGED               /* This code requires special installation.  */
867
868   LOAD_AVE_TYPE load_ave[3];
869
870   /* Get the address of LDAV_SYMBOL.  */
871   if (offset == 0)
872     {
873 #  ifndef sgi
874 #   ifndef NLIST_STRUCT
875       strcpy (nl[0].n_name, LDAV_SYMBOL);
876       strcpy (nl[1].n_name, "");
877 #   else /* NLIST_STRUCT */
878 #    ifdef HAVE_STRUCT_NLIST_N_UN_N_NAME
879       nl[0].n_un.n_name = LDAV_SYMBOL;
880       nl[1].n_un.n_name = 0;
881 #    else /* not HAVE_STRUCT_NLIST_N_UN_N_NAME */
882       nl[0].n_name = LDAV_SYMBOL;
883       nl[1].n_name = 0;
884 #    endif /* not HAVE_STRUCT_NLIST_N_UN_N_NAME */
885 #   endif /* NLIST_STRUCT */
886
887 #   ifndef SUNOS_5
888       if (
889 #    if !(defined (_AIX) && !defined (ps2))
890           nlist (KERNEL_FILE, nl)
891 #    else  /* _AIX */
892           knlist (nl, 1, sizeof (nl[0]))
893 #    endif
894           >= 0)
895           /* Omit "&& nl[0].n_type != 0 " -- it breaks on Sun386i.  */
896           {
897 #    ifdef FIXUP_KERNEL_SYMBOL_ADDR
898             FIXUP_KERNEL_SYMBOL_ADDR (nl);
899 #    endif
900             offset = nl[0].n_value;
901           }
902 #   endif /* !SUNOS_5 */
903 #  else  /* sgi */
904       int ldav_off;
905
906       ldav_off = sysmp (MP_KERNADDR, MPKA_AVENRUN);
907       if (ldav_off != -1)
908         offset = (long int) ldav_off & 0x7fffffff;
909 #  endif /* sgi */
910     }
911
912   /* Make sure we have /dev/kmem open.  */
913   if (!getloadavg_initialized)
914     {
915 #  ifndef SUNOS_5
916       channel = fd_safer (open ("/dev/kmem", O_RDONLY));
917       if (channel >= 0)
918         {
919           /* Set the channel to close on exec, so it does not
920              litter any child's descriptor table.  */
921           set_cloexec_flag (channel, true);
922           getloadavg_initialized = true;
923         }
924 #  else /* SUNOS_5 */
925       /* We pass 0 for the kernel, corefile, and swapfile names
926          to use the currently running kernel.  */
927       kd = kvm_open (0, 0, 0, O_RDONLY, 0);
928       if (kd != 0)
929         {
930           /* nlist the currently running kernel.  */
931           kvm_nlist (kd, nl);
932           offset = nl[0].n_value;
933           getloadavg_initialized = true;
934         }
935 #  endif /* SUNOS_5 */
936     }
937
938   /* If we can, get the load average values.  */
939   if (offset && getloadavg_initialized)
940     {
941       /* Try to read the load.  */
942 #  ifndef SUNOS_5
943       if (lseek (channel, offset, 0) == -1L
944           || read (channel, (char *) load_ave, sizeof (load_ave))
945           != sizeof (load_ave))
946         {
947           close (channel);
948           getloadavg_initialized = false;
949         }
950 #  else  /* SUNOS_5 */
951       if (kvm_read (kd, offset, (char *) load_ave, sizeof (load_ave))
952           != sizeof (load_ave))
953         {
954           kvm_close (kd);
955           getloadavg_initialized = false;
956         }
957 #  endif /* SUNOS_5 */
958     }
959
960   if (offset == 0 || !getloadavg_initialized)
961     return -1;
962 # endif /* LOAD_AVE_TYPE and not VMS */
963
964 # if !defined (LDAV_DONE) && defined (LOAD_AVE_TYPE) /* Including VMS.  */
965   if (nelem > 0)
966     loadavg[elem++] = LDAV_CVT (load_ave[0]);
967   if (nelem > 1)
968     loadavg[elem++] = LDAV_CVT (load_ave[1]);
969   if (nelem > 2)
970     loadavg[elem++] = LDAV_CVT (load_ave[2]);
971
972 #  define LDAV_DONE
973 # endif /* !LDAV_DONE && LOAD_AVE_TYPE */
974
975 # ifdef LDAV_DONE
976   return elem;
977 # else
978   /* Set errno to zero to indicate that there was no particular error;
979      this function just can't work at all on this system.  */
980   errno = 0;
981   return -1;
982 # endif
983 }
984
985 #endif /* ! HAVE_GETLOADAVG */
986 \f
987 #ifdef TEST
988 int
989 main (int argc, char **argv)
990 {
991   int naptime = 0;
992
993   if (argc > 1)
994     naptime = atoi (argv[1]);
995
996   while (1)
997     {
998       double avg[3];
999       int loads;
1000
1001       errno = 0;                /* Don't be misled if it doesn't set errno.  */
1002       loads = getloadavg (avg, 3);
1003       if (loads == -1)
1004         {
1005           perror ("Error getting load average");
1006           return EXIT_FAILURE;
1007         }
1008       if (loads > 0)
1009         printf ("1-minute: %f  ", avg[0]);
1010       if (loads > 1)
1011         printf ("5-minute: %f  ", avg[1]);
1012       if (loads > 2)
1013         printf ("15-minute: %f  ", avg[2]);
1014       if (loads > 0)
1015         putchar ('\n');
1016
1017       if (naptime == 0)
1018         break;
1019       sleep (naptime);
1020     }
1021
1022   return EXIT_SUCCESS;
1023 }
1024 #endif /* TEST */