Factor int-properties macros into a single file, except for
[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., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
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                  Pathname of the kernel 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 \f
456 /* Avoid static vars inside a function since in HPUX they dump as pure.  */
457
458 # ifdef NeXT
459 static processor_set_t default_set;
460 static bool getloadavg_initialized;
461 # endif /* NeXT */
462
463 # ifdef UMAX
464 static unsigned int cpus = 0;
465 static unsigned int samples;
466 # endif /* UMAX */
467
468 # ifdef DGUX
469 static struct dg_sys_info_load_info load_info;  /* what-a-mouthful! */
470 # endif /* DGUX */
471
472 # if !defined (HAVE_LIBKSTAT) && defined (LOAD_AVE_TYPE)
473 /* File descriptor open to /dev/kmem or VMS load ave driver.  */
474 static int channel;
475 /* True iff channel is valid.  */
476 static bool getloadavg_initialized;
477 /* Offset in kmem to seek to read load average, or 0 means invalid.  */
478 static long offset;
479
480 #  if !defined (VMS) && !defined (sgi) && !defined (__linux__)
481 static struct nlist nl[2];
482 #  endif /* Not VMS or sgi */
483
484 #  ifdef SUNOS_5
485 static kvm_t *kd;
486 #  endif /* SUNOS_5 */
487
488 # endif /* LOAD_AVE_TYPE && !HAVE_LIBKSTAT */
489 \f
490 /* Put the 1 minute, 5 minute and 15 minute load averages
491    into the first NELEM elements of LOADAVG.
492    Return the number written (never more than 3, but may be less than NELEM),
493    or -1 if an error occurred.  */
494
495 int
496 getloadavg (double loadavg[], int nelem)
497 {
498   int elem = 0;                 /* Return value.  */
499
500 # ifdef NO_GET_LOAD_AVG
501 #  define LDAV_DONE
502   /* Set errno to zero to indicate that there was no particular error;
503      this function just can't work at all on this system.  */
504   errno = 0;
505   elem = -1;
506 # endif
507
508 # if !defined (LDAV_DONE) && defined (HAVE_LIBKSTAT)
509 /* Use libkstat because we don't have to be root.  */
510 #  define LDAV_DONE
511   kstat_ctl_t *kc;
512   kstat_t *ksp;
513   kstat_named_t *kn;
514
515   kc = kstat_open ();
516   if (kc == 0)
517     return -1;
518   ksp = kstat_lookup (kc, "unix", 0, "system_misc");
519   if (ksp == 0)
520     return -1;
521   if (kstat_read (kc, ksp, 0) == -1)
522     return -1;
523
524
525   kn = kstat_data_lookup (ksp, "avenrun_1min");
526   if (kn == 0)
527     {
528       /* Return -1 if no load average information is available.  */
529       nelem = 0;
530       elem = -1;
531     }
532
533   if (nelem >= 1)
534     loadavg[elem++] = (double) kn->value.ul / FSCALE;
535
536   if (nelem >= 2)
537     {
538       kn = kstat_data_lookup (ksp, "avenrun_5min");
539       if (kn != 0)
540         {
541           loadavg[elem++] = (double) kn->value.ul / FSCALE;
542
543           if (nelem >= 3)
544             {
545               kn = kstat_data_lookup (ksp, "avenrun_15min");
546               if (kn != 0)
547                 loadavg[elem++] = (double) kn->value.ul / FSCALE;
548             }
549         }
550     }
551
552   kstat_close (kc);
553 # endif /* HAVE_LIBKSTAT */
554
555 # if !defined (LDAV_DONE) && defined (hpux) && defined (HAVE_PSTAT_GETDYNAMIC)
556 /* Use pstat_getdynamic() because we don't have to be root.  */
557 #  define LDAV_DONE
558 #  undef LOAD_AVE_TYPE
559
560   struct pst_dynamic dyn_info;
561   if (pstat_getdynamic (&dyn_info, sizeof (dyn_info), 0, 0) < 0)
562     return -1;
563   if (nelem > 0)
564     loadavg[elem++] = dyn_info.psd_avg_1_min;
565   if (nelem > 1)
566     loadavg[elem++] = dyn_info.psd_avg_5_min;
567   if (nelem > 2)
568     loadavg[elem++] = dyn_info.psd_avg_15_min;
569
570 # endif /* hpux && HAVE_PSTAT_GETDYNAMIC */
571
572 # if !defined (LDAV_DONE) && defined (__linux__)
573 #  define LDAV_DONE
574 #  undef LOAD_AVE_TYPE
575
576 #  ifndef LINUX_LDAV_FILE
577 #   define LINUX_LDAV_FILE "/proc/loadavg"
578 #  endif
579
580   char ldavgbuf[3 * (INT_STRLEN_BOUND (long int) + sizeof ".00")];
581   char const *ptr = ldavgbuf;
582   int fd, count;
583
584   fd = open (LINUX_LDAV_FILE, O_RDONLY);
585   if (fd == -1)
586     return -1;
587   count = read (fd, ldavgbuf, sizeof ldavgbuf - 1);
588   (void) close (fd);
589   if (count <= 0)
590     return -1;
591   ldavgbuf[count] = '\0';
592
593   for (elem = 0; elem < nelem; elem++)
594     {
595       char *endptr;
596       double d = c_strtod (ptr, &endptr);
597       if (ptr == endptr)
598         {
599           if (elem == 0)
600             return -1;
601           break;
602         }
603       loadavg[elem] = d;
604       ptr = endptr;
605     }
606
607   return elem;
608
609 # endif /* __linux__ */
610
611 # if !defined (LDAV_DONE) && defined (__NetBSD__)
612 #  define LDAV_DONE
613 #  undef LOAD_AVE_TYPE
614
615 #  ifndef NETBSD_LDAV_FILE
616 #   define NETBSD_LDAV_FILE "/kern/loadavg"
617 #  endif
618
619   unsigned long int load_ave[3], scale;
620   int count;
621   FILE *fp;
622
623   fp = fopen (NETBSD_LDAV_FILE, "r");
624   if (fp == NULL)
625     return -1;
626   count = fscanf (fp, "%lu %lu %lu %lu\n",
627                   &load_ave[0], &load_ave[1], &load_ave[2],
628                   &scale);
629   (void) fclose (fp);
630   if (count != 4)
631     return -1;
632
633   for (elem = 0; elem < nelem; elem++)
634     loadavg[elem] = (double) load_ave[elem] / (double) scale;
635
636   return elem;
637
638 # endif /* __NetBSD__ */
639
640 # if !defined (LDAV_DONE) && defined (NeXT)
641 #  define LDAV_DONE
642   /* The NeXT code was adapted from iscreen 3.2.  */
643
644   host_t host;
645   struct processor_set_basic_info info;
646   unsigned int info_count;
647
648   /* We only know how to get the 1-minute average for this system,
649      so even if the caller asks for more than 1, we only return 1.  */
650
651   if (!getloadavg_initialized)
652     {
653       if (processor_set_default (host_self (), &default_set) == KERN_SUCCESS)
654         getloadavg_initialized = true;
655     }
656
657   if (getloadavg_initialized)
658     {
659       info_count = PROCESSOR_SET_BASIC_INFO_COUNT;
660       if (processor_set_info (default_set, PROCESSOR_SET_BASIC_INFO, &host,
661                               (processor_set_info_t) &info, &info_count)
662           != KERN_SUCCESS)
663         getloadavg_initialized = false;
664       else
665         {
666           if (nelem > 0)
667             loadavg[elem++] = (double) info.load_average / LOAD_SCALE;
668         }
669     }
670
671   if (!getloadavg_initialized)
672     return -1;
673 # endif /* NeXT */
674
675 # if !defined (LDAV_DONE) && defined (UMAX)
676 #  define LDAV_DONE
677 /* UMAX 4.2, which runs on the Encore Multimax multiprocessor, does not
678    have a /dev/kmem.  Information about the workings of the running kernel
679    can be gathered with inq_stats system calls.
680    We only know how to get the 1-minute average for this system.  */
681
682   struct proc_summary proc_sum_data;
683   struct stat_descr proc_info;
684   double load;
685   register unsigned int i, j;
686
687   if (cpus == 0)
688     {
689       register unsigned int c, i;
690       struct cpu_config conf;
691       struct stat_descr desc;
692
693       desc.sd_next = 0;
694       desc.sd_subsys = SUBSYS_CPU;
695       desc.sd_type = CPUTYPE_CONFIG;
696       desc.sd_addr = (char *) &conf;
697       desc.sd_size = sizeof conf;
698
699       if (inq_stats (1, &desc))
700         return -1;
701
702       c = 0;
703       for (i = 0; i < conf.config_maxclass; ++i)
704         {
705           struct class_stats stats;
706           bzero ((char *) &stats, sizeof stats);
707
708           desc.sd_type = CPUTYPE_CLASS;
709           desc.sd_objid = i;
710           desc.sd_addr = (char *) &stats;
711           desc.sd_size = sizeof stats;
712
713           if (inq_stats (1, &desc))
714             return -1;
715
716           c += stats.class_numcpus;
717         }
718       cpus = c;
719       samples = cpus < 2 ? 3 : (2 * cpus / 3);
720     }
721
722   proc_info.sd_next = 0;
723   proc_info.sd_subsys = SUBSYS_PROC;
724   proc_info.sd_type = PROCTYPE_SUMMARY;
725   proc_info.sd_addr = (char *) &proc_sum_data;
726   proc_info.sd_size = sizeof (struct proc_summary);
727   proc_info.sd_sizeused = 0;
728
729   if (inq_stats (1, &proc_info) != 0)
730     return -1;
731
732   load = proc_sum_data.ps_nrunnable;
733   j = 0;
734   for (i = samples - 1; i > 0; --i)
735     {
736       load += proc_sum_data.ps_nrun[j];
737       if (j++ == PS_NRUNSIZE)
738         j = 0;
739     }
740
741   if (nelem > 0)
742     loadavg[elem++] = load / samples / cpus;
743 # endif /* UMAX */
744
745 # if !defined (LDAV_DONE) && defined (DGUX)
746 #  define LDAV_DONE
747   /* This call can return -1 for an error, but with good args
748      it's not supposed to fail.  The first argument is for no
749      apparent reason of type `long int *'.  */
750   dg_sys_info ((long int *) &load_info,
751                DG_SYS_INFO_LOAD_INFO_TYPE,
752                DG_SYS_INFO_LOAD_VERSION_0);
753
754   if (nelem > 0)
755     loadavg[elem++] = load_info.one_minute;
756   if (nelem > 1)
757     loadavg[elem++] = load_info.five_minute;
758   if (nelem > 2)
759     loadavg[elem++] = load_info.fifteen_minute;
760 # endif /* DGUX */
761
762 # if !defined (LDAV_DONE) && defined (apollo)
763 #  define LDAV_DONE
764 /* Apollo code from lisch@mentorg.com (Ray Lischner).
765
766    This system call is not documented.  The load average is obtained as
767    three long integers, for the load average over the past minute,
768    five minutes, and fifteen minutes.  Each value is a scaled integer,
769    with 16 bits of integer part and 16 bits of fraction part.
770
771    I'm not sure which operating system first supported this system call,
772    but I know that SR10.2 supports it.  */
773
774   extern void proc1_$get_loadav ();
775   unsigned long load_ave[3];
776
777   proc1_$get_loadav (load_ave);
778
779   if (nelem > 0)
780     loadavg[elem++] = load_ave[0] / 65536.0;
781   if (nelem > 1)
782     loadavg[elem++] = load_ave[1] / 65536.0;
783   if (nelem > 2)
784     loadavg[elem++] = load_ave[2] / 65536.0;
785 # endif /* apollo */
786
787 # if !defined (LDAV_DONE) && defined (OSF_MIPS)
788 #  define LDAV_DONE
789
790   struct tbl_loadavg load_ave;
791   table (TBL_LOADAVG, 0, &load_ave, 1, sizeof (load_ave));
792   loadavg[elem++]
793     = (load_ave.tl_lscale == 0
794        ? load_ave.tl_avenrun.d[0]
795        : (load_ave.tl_avenrun.l[0] / (double) load_ave.tl_lscale));
796 # endif /* OSF_MIPS */
797
798 # if !defined (LDAV_DONE) && (defined (__MSDOS__) || defined (WINDOWS32))
799 #  define LDAV_DONE
800
801   /* A faithful emulation is going to have to be saved for a rainy day.  */
802   for ( ; elem < nelem; elem++)
803     {
804       loadavg[elem] = 0.0;
805     }
806 # endif  /* __MSDOS__ || WINDOWS32 */
807
808 # if !defined (LDAV_DONE) && defined (OSF_ALPHA)
809 #  define LDAV_DONE
810
811   struct tbl_loadavg load_ave;
812   table (TBL_LOADAVG, 0, &load_ave, 1, sizeof (load_ave));
813   for (elem = 0; elem < nelem; elem++)
814     loadavg[elem]
815       = (load_ave.tl_lscale == 0
816          ? load_ave.tl_avenrun.d[elem]
817          : (load_ave.tl_avenrun.l[elem] / (double) load_ave.tl_lscale));
818 # endif /* OSF_ALPHA */
819
820 # if !defined (LDAV_DONE) && defined (VMS)
821   /* VMS specific code -- read from the Load Ave driver.  */
822
823   LOAD_AVE_TYPE load_ave[3];
824   static bool getloadavg_initialized;
825 #  ifdef eunice
826   struct
827   {
828     int dsc$w_length;
829     char *dsc$a_pointer;
830   } descriptor;
831 #  endif
832
833   /* Ensure that there is a channel open to the load ave device.  */
834   if (!getloadavg_initialized)
835     {
836       /* Attempt to open the channel.  */
837 #  ifdef eunice
838       descriptor.dsc$w_length = 18;
839       descriptor.dsc$a_pointer = "$$VMS_LOAD_AVERAGE";
840 #  else
841       $DESCRIPTOR (descriptor, "LAV0:");
842 #  endif
843       if (sys$assign (&descriptor, &channel, 0, 0) & 1)
844         getloadavg_initialized = true;
845     }
846
847   /* Read the load average vector.  */
848   if (getloadavg_initialized
849       && !(sys$qiow (0, channel, IO$_READVBLK, 0, 0, 0,
850                      load_ave, 12, 0, 0, 0, 0) & 1))
851     {
852       sys$dassgn (channel);
853       getloadavg_initialized = false;
854     }
855
856   if (!getloadavg_initialized)
857     return -1;
858 # endif /* VMS */
859
860 # if !defined (LDAV_DONE) && defined (LOAD_AVE_TYPE) && !defined (VMS)
861
862   /* UNIX-specific code -- read the average from /dev/kmem.  */
863
864 #  define LDAV_PRIVILEGED               /* This code requires special installation.  */
865
866   LOAD_AVE_TYPE load_ave[3];
867
868   /* Get the address of LDAV_SYMBOL.  */
869   if (offset == 0)
870     {
871 #  ifndef sgi
872 #   ifndef NLIST_STRUCT
873       strcpy (nl[0].n_name, LDAV_SYMBOL);
874       strcpy (nl[1].n_name, "");
875 #   else /* NLIST_STRUCT */
876 #    ifdef HAVE_STRUCT_NLIST_N_UN_N_NAME
877       nl[0].n_un.n_name = LDAV_SYMBOL;
878       nl[1].n_un.n_name = 0;
879 #    else /* not HAVE_STRUCT_NLIST_N_UN_N_NAME */
880       nl[0].n_name = LDAV_SYMBOL;
881       nl[1].n_name = 0;
882 #    endif /* not HAVE_STRUCT_NLIST_N_UN_N_NAME */
883 #   endif /* NLIST_STRUCT */
884
885 #   ifndef SUNOS_5
886       if (
887 #    if !(defined (_AIX) && !defined (ps2))
888           nlist (KERNEL_FILE, nl)
889 #    else  /* _AIX */
890           knlist (nl, 1, sizeof (nl[0]))
891 #    endif
892           >= 0)
893           /* Omit "&& nl[0].n_type != 0 " -- it breaks on Sun386i.  */
894           {
895 #    ifdef FIXUP_KERNEL_SYMBOL_ADDR
896             FIXUP_KERNEL_SYMBOL_ADDR (nl);
897 #    endif
898             offset = nl[0].n_value;
899           }
900 #   endif /* !SUNOS_5 */
901 #  else  /* sgi */
902       int ldav_off;
903
904       ldav_off = sysmp (MP_KERNADDR, MPKA_AVENRUN);
905       if (ldav_off != -1)
906         offset = (long int) ldav_off & 0x7fffffff;
907 #  endif /* sgi */
908     }
909
910   /* Make sure we have /dev/kmem open.  */
911   if (!getloadavg_initialized)
912     {
913 #  ifndef SUNOS_5
914       channel = open ("/dev/kmem", 0);
915       if (channel >= 0)
916         {
917           /* Set the channel to close on exec, so it does not
918              litter any child's descriptor table.  */
919           set_cloexec_flag (channel, true);
920           getloadavg_initialized = true;
921         }
922 #  else /* SUNOS_5 */
923       /* We pass 0 for the kernel, corefile, and swapfile names
924          to use the currently running kernel.  */
925       kd = kvm_open (0, 0, 0, O_RDONLY, 0);
926       if (kd != 0)
927         {
928           /* nlist the currently running kernel.  */
929           kvm_nlist (kd, nl);
930           offset = nl[0].n_value;
931           getloadavg_initialized = true;
932         }
933 #  endif /* SUNOS_5 */
934     }
935
936   /* If we can, get the load average values.  */
937   if (offset && getloadavg_initialized)
938     {
939       /* Try to read the load.  */
940 #  ifndef SUNOS_5
941       if (lseek (channel, offset, 0) == -1L
942           || read (channel, (char *) load_ave, sizeof (load_ave))
943           != sizeof (load_ave))
944         {
945           close (channel);
946           getloadavg_initialized = false;
947         }
948 #  else  /* SUNOS_5 */
949       if (kvm_read (kd, offset, (char *) load_ave, sizeof (load_ave))
950           != sizeof (load_ave))
951         {
952           kvm_close (kd);
953           getloadavg_initialized = false;
954         }
955 #  endif /* SUNOS_5 */
956     }
957
958   if (offset == 0 || !getloadavg_initialized)
959     return -1;
960 # endif /* LOAD_AVE_TYPE and not VMS */
961
962 # if !defined (LDAV_DONE) && defined (LOAD_AVE_TYPE) /* Including VMS.  */
963   if (nelem > 0)
964     loadavg[elem++] = LDAV_CVT (load_ave[0]);
965   if (nelem > 1)
966     loadavg[elem++] = LDAV_CVT (load_ave[1]);
967   if (nelem > 2)
968     loadavg[elem++] = LDAV_CVT (load_ave[2]);
969
970 #  define LDAV_DONE
971 # endif /* !LDAV_DONE && LOAD_AVE_TYPE */
972
973 # ifdef LDAV_DONE
974   return elem;
975 # else
976   /* Set errno to zero to indicate that there was no particular error;
977      this function just can't work at all on this system.  */
978   errno = 0;
979   return -1;
980 # endif
981 }
982
983 #endif /* ! HAVE_GETLOADAVG */
984 \f
985 #ifdef TEST
986 int
987 main (int argc, char **argv)
988 {
989   int naptime = 0;
990
991   if (argc > 1)
992     naptime = atoi (argv[1]);
993
994   while (1)
995     {
996       double avg[3];
997       int loads;
998
999       errno = 0;                /* Don't be misled if it doesn't set errno.  */
1000       loads = getloadavg (avg, 3);
1001       if (loads == -1)
1002         {
1003           perror ("Error getting load average");
1004           return EXIT_FAILURE;
1005         }
1006       if (loads > 0)
1007         printf ("1-minute: %f  ", avg[0]);
1008       if (loads > 1)
1009         printf ("5-minute: %f  ", avg[1]);
1010       if (loads > 2)
1011         printf ("15-minute: %f  ", avg[2]);
1012       if (loads > 0)
1013         putchar ('\n');
1014
1015       if (naptime == 0)
1016         break;
1017       sleep (naptime);
1018     }
1019
1020   return EXIT_SUCCESS;
1021 }
1022 #endif /* TEST */