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