1 /* Get the system load averages.
3 Copyright (C) 1985-1989, 1991-1995, 1997, 1999-2000, 2003-2011 Free Software
6 NOTE: The canonical source of this file is maintained with gnulib.
7 Bugs can be reported to bug-gnulib@gnu.org.
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 3 of the License, or
12 (at your option) any later version.
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.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 /* Compile-time symbols that this file uses:
24 HAVE_PSTAT_GETDYNAMIC Define this if your system has the
25 pstat_getdynamic function. I think it
26 is unique to HPUX9. The best way to get the
27 definition is through the AC_FUNC_GETLOADAVG
28 macro that comes with autoconf 2.13 or newer.
29 If that isn't an option, then just put
30 AC_CHECK_FUNCS(pstat_getdynamic) in your
32 HAVE_LIBPERFSTAT Define this if your system has the
33 perfstat_cpu_total function in libperfstat (AIX).
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.
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;
43 otherwise, no load average is available.
44 HAVE_NLIST_H nlist.h is available. NLIST_STRUCT defaults
46 NLIST_STRUCT Include nlist.h, not a.out.h.
47 N_NAME_POINTER The nlist n_name element is a pointer,
49 HAVE_STRUCT_NLIST_N_UN_N_NAME `n_un.n_name' is member of `struct nlist'.
50 LINUX_LDAV_FILE [__linux__, __CYGWIN__]: File containing
53 Specific system predefines this file uses, aside from setting
54 default values if not emacs:
57 BSD Real BSD, not just BSD-like.
60 eunice UNIX emulator under VMS.
62 __MSDOS__ No-op for MSDOS.
65 sequent Sequent Dynix 3.x.x (BSD)
66 _SEQUENT_ Sequent DYNIX/ptx 1.x.x (SYSV)
67 sony_news NEWS-OS (works at least for 4.1C)
71 WINDOWS32 No-op for Windows95/NT.
72 __linux__ Linux: assumes /proc file system mounted.
73 Support from Michael K. Johnson.
74 __CYGWIN__ Cygwin emulates linux /proc/loadavg.
75 __NetBSD__ NetBSD: assumes /kern file system mounted.
77 In addition, to avoid nesting many #ifdefs, we internally set
78 LDAV_DONE to indicate that the load average has been computed.
80 We also #define LDAV_PRIVILEGED if a program will require
81 special installation to be able to call getloadavg. */
83 /* "configure" defines CONFIGURING_GETLOADAVG to sidestep problems
84 with partially-configured source directories. */
86 #ifndef CONFIGURING_GETLOADAVG
97 # include <sys/types.h>
99 /* Both the Emacs and non-Emacs sections want this. Some
100 configuration files' definitions for the LOAD_AVE_CVT macro (like
101 sparc.h's) use macros like FSCALE, defined here. */
102 # if defined (unix) || defined (__unix)
103 # include <sys/param.h>
106 # include "intprops.h"
108 /* The existing Emacs configuration files define a macro called
109 LOAD_AVE_CVT, which accepts a value of type LOAD_AVE_TYPE, and
110 returns the load average multiplied by 100. What we actually want
111 is a macro called LDAV_CVT, which returns the load average as an
114 For backwards compatibility, we'll define LDAV_CVT in terms of
115 LOAD_AVE_CVT, but future machine config files should just define
116 LDAV_CVT directly. */
118 # if !defined (LDAV_CVT) && defined (LOAD_AVE_CVT)
119 # define LDAV_CVT(n) (LOAD_AVE_CVT (n) / 100.0)
122 # if !defined (BSD) && defined (ultrix)
123 /* Ultrix behaves like BSD on Vaxen. */
128 /* NeXT in the 2.{0,1,2} releases defines BSD in <sys/param.h>, which
129 conflicts with the definition understood in this file, that this
133 /* NeXT defines FSCALE in <sys/param.h>. However, we take FSCALE being
134 defined to mean that the nlist method should be used, which is not true. */
138 /* Same issues as for NeXT apply to the HURD-based GNU system. */
142 # endif /* __GNU__ */
144 /* Set values that are different from the defaults, which are
145 set a little farther down with #ifndef. */
148 /* Some shorthands. */
150 # if defined (HPUX) && !defined (hpux)
154 # if defined (__hpux) && !defined (hpux)
158 # if defined (__sun) && !defined (sun)
162 # if defined (hp300) && !defined (hpux)
166 # if defined (ultrix) && defined (mips)
170 # if defined (__SVR4) && !defined (SVR4)
174 # if (defined (sun) && defined (SVR4)) || defined (SOLARIS2)
178 # if defined (__osf__) && (defined (__alpha) || defined (__alpha__))
180 # include <sys/mbuf.h>
181 # include <sys/socket.h>
182 # include <net/route.h>
183 # include <sys/table.h>
184 /* Tru64 4.0D's table.h redefines sys */
188 # if defined (__osf__) && (defined (mips) || defined (__mips__))
190 # include <sys/table.h>
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. */
201 /* VAX C can't handle multi-line #ifs, or lines longer than 256 chars. */
202 # ifndef LOAD_AVE_TYPE
205 # define LOAD_AVE_TYPE long
209 # define LOAD_AVE_TYPE long
213 # define LOAD_AVE_TYPE long
217 # define LOAD_AVE_TYPE long
221 # define LOAD_AVE_TYPE long
225 # define LOAD_AVE_TYPE long
229 # define LOAD_AVE_TYPE long
233 # define LOAD_AVE_TYPE long
237 # define LOAD_AVE_TYPE long
240 # if defined (ardent) && defined (titan)
241 # define LOAD_AVE_TYPE long
245 # define LOAD_AVE_TYPE long
248 # if defined (alliant) && defined (i860) /* Alliant FX/2800 */
249 # define LOAD_AVE_TYPE long
252 # if defined _AIX && ! defined HAVE_LIBPERFSTAT
253 # define LOAD_AVE_TYPE long
257 # define LOAD_AVE_TYPE double
259 # define LDAV_CVT(n) (n)
263 # endif /* No LOAD_AVE_TYPE. */
266 /* <sys/param.h> defines an incorrect value for FSCALE on Alpha OSF/1,
267 according to ghazi@noc.rutgers.edu. */
269 # define FSCALE 1024.0
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. */
276 # define FSCALE 100.0
282 /* SunOS and some others define FSCALE in sys/param.h. */
285 # define FSCALE 2048.0
288 # if defined (MIPS) || defined (SVR4) || defined (decstation)
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. */
296 # define FSCALE 1000.0
299 # if defined (ardent) && defined (titan)
300 # define FSCALE 65536.0
304 # define FSCALE 100.0
307 # if defined _AIX && !defined HAVE_LIBPERFSTAT
308 # define FSCALE 65536.0
311 # endif /* Not FSCALE. */
313 # if !defined (LDAV_CVT) && defined (FSCALE)
314 # define LDAV_CVT(n) (((double) (n)) / FSCALE)
317 # ifndef NLIST_STRUCT
319 # define NLIST_STRUCT
323 # if defined (sgi) || (defined (mips) && !defined (BSD))
324 # define FIXUP_KERNEL_SYMBOL_ADDR(nl) ((nl)[0].n_value &= ~(1 << 31))
328 # if !defined (KERNEL_FILE) && defined (sequent)
329 # define KERNEL_FILE "/dynix"
332 # if !defined (KERNEL_FILE) && defined (hpux)
333 # define KERNEL_FILE "/hp-ux"
336 # if !defined (KERNEL_FILE) && (defined (_SEQUENT_) || defined (MIPS) || defined (SVR4) || defined (ISC) || defined (sgi) || (defined (ardent) && defined (titan)))
337 # define KERNEL_FILE "/unix"
341 # if !defined (LDAV_SYMBOL) && defined (alliant)
342 # define LDAV_SYMBOL "_Loadavg"
345 # if !defined (LDAV_SYMBOL) && ((defined (hpux) && !defined (hp9000s300)) || defined (_SEQUENT_) || defined (SVR4) || defined (ISC) || defined (sgi) || (defined (ardent) && defined (titan)) || (defined (_AIX) && !defined(HAVE_LIBPERFSTAT)))
346 # define LDAV_SYMBOL "avenrun"
351 /* LOAD_AVE_TYPE should only get defined if we're going to use the
353 # if !defined (LOAD_AVE_TYPE) && (defined (BSD) || defined (LDAV_CVT) || defined (KERNEL_FILE) || defined (LDAV_SYMBOL))
354 # define LOAD_AVE_TYPE double
357 # ifdef LOAD_AVE_TYPE
361 # ifndef NLIST_STRUCT
363 # else /* NLIST_STRUCT */
365 # endif /* NLIST_STRUCT */
372 # if defined (hpux) && defined (HAVE_PSTAT_GETDYNAMIC)
373 # include <sys/pstat.h>
377 # define KERNEL_FILE "/vmunix"
378 # endif /* KERNEL_FILE */
381 # define LDAV_SYMBOL "_avenrun"
382 # endif /* LDAV_SYMBOL */
383 # endif /* __linux__ */
389 # include <descrip.h>
391 # include <vms/iodef.h>
396 # define LDAV_CVT(n) ((double) (n))
397 # endif /* !LDAV_CVT */
399 # endif /* LOAD_AVE_TYPE */
401 # if defined HAVE_LIBPERFSTAT
402 # include <sys/protosw.h>
403 # include <libperfstat.h>
404 # include <sys/proc.h>
410 # if defined (__GNU__) && !defined (NeXT)
411 /* Note that NeXT Openstep defines __GNU__ even though it should not. */
412 /* GNU system acts much like NeXT, for load average purposes,
415 # define host_self mach_host_self
419 # ifdef HAVE_MACH_MACH_H
420 # include <mach/mach.h>
427 # include <sys/sysmp.h>
432 # include <sys/time.h>
433 # include <sys/wait.h>
434 # include <sys/syscall.h>
437 # include <machine/cpu.h>
438 # include <inq_stats/statistics.h>
439 # include <inq_stats/sysstats.h>
440 # include <inq_stats/cpustats.h>
441 # include <inq_stats/procstats.h>
442 # else /* Not UMAX_43. */
443 # include <sys/sysdefs.h>
444 # include <sys/statistics.h>
445 # include <sys/sysstats.h>
446 # include <sys/cpudefs.h>
447 # include <sys/cpustats.h>
448 # include <sys/procstats.h>
449 # endif /* Not UMAX_43. */
453 # include <sys/dg_sys_info.h>
456 # if (defined __linux__ || defined __CYGWIN__ || defined SUNOS_5 \
457 || (defined LOAD_AVE_TYPE && ! defined __VMS))
461 /* Avoid static vars inside a function since in HPUX they dump as pure. */
464 static processor_set_t default_set
;
465 static bool getloadavg_initialized
;
469 static unsigned int cpus
= 0;
470 static unsigned int samples
;
474 static struct dg_sys_info_load_info load_info
; /* what-a-mouthful! */
477 # if !defined (HAVE_LIBKSTAT) && defined (LOAD_AVE_TYPE)
478 /* File descriptor open to /dev/kmem or VMS load ave driver. */
480 /* True if channel is valid. */
481 static bool getloadavg_initialized
;
482 /* Offset in kmem to seek to read load average, or 0 means invalid. */
485 # if ! defined __VMS && ! defined sgi && ! defined __linux__
486 static struct nlist name_list
[2];
491 # endif /* SUNOS_5 */
493 # endif /* LOAD_AVE_TYPE && !HAVE_LIBKSTAT */
495 /* Put the 1 minute, 5 minute and 15 minute load averages
496 into the first NELEM elements of LOADAVG.
497 Return the number written (never more than 3, but may be less than NELEM),
498 or -1 (setting errno) if an error occurred. */
501 getloadavg (double loadavg
[], int nelem
)
503 int elem
= 0; /* Return value. */
505 # ifdef NO_GET_LOAD_AVG
511 # if !defined (LDAV_DONE) && defined (HAVE_LIBKSTAT) /* Solaris <= 2.6 */
512 /* Use libkstat because we don't have to be root. */
522 ksp
= kstat_lookup (kc
, "unix", 0, "system_misc");
525 if (kstat_read (kc
, ksp
, 0) == -1)
529 kn
= kstat_data_lookup (ksp
, "avenrun_1min");
532 /* Return -1 if no load average information is available. */
538 loadavg
[elem
++] = (double) kn
->value
.ul
/ FSCALE
;
542 kn
= kstat_data_lookup (ksp
, "avenrun_5min");
545 loadavg
[elem
++] = (double) kn
->value
.ul
/ FSCALE
;
549 kn
= kstat_data_lookup (ksp
, "avenrun_15min");
551 loadavg
[elem
++] = (double) kn
->value
.ul
/ FSCALE
;
559 # endif /* HAVE_LIBKSTAT */
561 # if !defined (LDAV_DONE) && defined (hpux) && defined (HAVE_PSTAT_GETDYNAMIC)
563 /* Use pstat_getdynamic() because we don't have to be root. */
565 # undef LOAD_AVE_TYPE
567 struct pst_dynamic dyn_info
;
568 if (pstat_getdynamic (&dyn_info
, sizeof (dyn_info
), 0, 0) < 0)
571 loadavg
[elem
++] = dyn_info
.psd_avg_1_min
;
573 loadavg
[elem
++] = dyn_info
.psd_avg_5_min
;
575 loadavg
[elem
++] = dyn_info
.psd_avg_15_min
;
577 # endif /* hpux && HAVE_PSTAT_GETDYNAMIC */
579 # if ! defined LDAV_DONE && defined HAVE_LIBPERFSTAT /* AIX */
581 # undef LOAD_AVE_TYPE
582 /* Use perfstat_cpu_total because we don't have to be root. */
584 perfstat_cpu_total_t cpu_stats
;
585 int result
= perfstat_cpu_total (NULL
, &cpu_stats
, sizeof cpu_stats
, 1);
588 loadavg
[0] = cpu_stats
.loadavg
[0] / (double)(1 << SBITS
);
589 loadavg
[1] = cpu_stats
.loadavg
[1] / (double)(1 << SBITS
);
590 loadavg
[2] = cpu_stats
.loadavg
[2] / (double)(1 << SBITS
);
595 # if !defined (LDAV_DONE) && (defined (__linux__) || defined (__CYGWIN__))
596 /* Linux without glibc, Cygwin */
598 # undef LOAD_AVE_TYPE
600 # ifndef LINUX_LDAV_FILE
601 # define LINUX_LDAV_FILE "/proc/loadavg"
604 char ldavgbuf
[3 * (INT_STRLEN_BOUND (int) + sizeof ".00 ")];
605 char const *ptr
= ldavgbuf
;
606 int fd
, count
, saved_errno
;
608 fd
= open (LINUX_LDAV_FILE
, O_RDONLY
);
611 count
= read (fd
, ldavgbuf
, sizeof ldavgbuf
- 1);
617 ldavgbuf
[count
] = '\0';
619 for (elem
= 0; elem
< nelem
; elem
++)
621 double numerator
= 0;
622 double denominator
= 1;
627 /* Finish if this number is missing, and report an error if all
629 if (! ('0' <= *ptr
&& *ptr
<= '9'))
639 while ('0' <= *ptr
&& *ptr
<= '9')
640 numerator
= 10 * numerator
+ (*ptr
++ - '0');
643 for (ptr
++; '0' <= *ptr
&& *ptr
<= '9'; ptr
++)
644 numerator
= 10 * numerator
+ (*ptr
- '0'), denominator
*= 10;
646 loadavg
[elem
++] = numerator
/ denominator
;
651 # endif /* __linux__ || __CYGWIN__ */
653 # if !defined (LDAV_DONE) && defined (__NetBSD__) /* NetBSD < 0.9 */
655 # undef LOAD_AVE_TYPE
657 # ifndef NETBSD_LDAV_FILE
658 # define NETBSD_LDAV_FILE "/kern/loadavg"
661 unsigned long int load_ave
[3], scale
;
665 fp
= fopen (NETBSD_LDAV_FILE
, "r");
668 count
= fscanf (fp
, "%lu %lu %lu %lu\n",
669 &load_ave
[0], &load_ave
[1], &load_ave
[2],
678 for (elem
= 0; elem
< nelem
; elem
++)
679 loadavg
[elem
] = (double) load_ave
[elem
] / (double) scale
;
683 # endif /* __NetBSD__ */
685 # if !defined (LDAV_DONE) && defined (NeXT) /* NeXTStep */
687 /* The NeXT code was adapted from iscreen 3.2. */
690 struct processor_set_basic_info info
;
691 unsigned int info_count
;
693 /* We only know how to get the 1-minute average for this system,
694 so even if the caller asks for more than 1, we only return 1. */
696 if (!getloadavg_initialized
)
698 if (processor_set_default (host_self (), &default_set
) == KERN_SUCCESS
)
699 getloadavg_initialized
= true;
702 if (getloadavg_initialized
)
704 info_count
= PROCESSOR_SET_BASIC_INFO_COUNT
;
705 if (processor_set_info (default_set
, PROCESSOR_SET_BASIC_INFO
, &host
,
706 (processor_set_info_t
) &info
, &info_count
)
708 getloadavg_initialized
= false;
712 loadavg
[elem
++] = (double) info
.load_average
/ LOAD_SCALE
;
716 if (!getloadavg_initialized
)
723 # if !defined (LDAV_DONE) && defined (UMAX)
725 /* UMAX 4.2, which runs on the Encore Multimax multiprocessor, does not
726 have a /dev/kmem. Information about the workings of the running kernel
727 can be gathered with inq_stats system calls.
728 We only know how to get the 1-minute average for this system. */
730 struct proc_summary proc_sum_data
;
731 struct stat_descr proc_info
;
733 register unsigned int i
, j
;
737 register unsigned int c
, i
;
738 struct cpu_config conf
;
739 struct stat_descr desc
;
742 desc
.sd_subsys
= SUBSYS_CPU
;
743 desc
.sd_type
= CPUTYPE_CONFIG
;
744 desc
.sd_addr
= (char *) &conf
;
745 desc
.sd_size
= sizeof conf
;
747 if (inq_stats (1, &desc
))
751 for (i
= 0; i
< conf
.config_maxclass
; ++i
)
753 struct class_stats stats
;
754 memset (&stats
, 0, sizeof stats
);
756 desc
.sd_type
= CPUTYPE_CLASS
;
758 desc
.sd_addr
= (char *) &stats
;
759 desc
.sd_size
= sizeof stats
;
761 if (inq_stats (1, &desc
))
764 c
+= stats
.class_numcpus
;
767 samples
= cpus
< 2 ? 3 : (2 * cpus
/ 3);
770 proc_info
.sd_next
= 0;
771 proc_info
.sd_subsys
= SUBSYS_PROC
;
772 proc_info
.sd_type
= PROCTYPE_SUMMARY
;
773 proc_info
.sd_addr
= (char *) &proc_sum_data
;
774 proc_info
.sd_size
= sizeof (struct proc_summary
);
775 proc_info
.sd_sizeused
= 0;
777 if (inq_stats (1, &proc_info
) != 0)
780 load
= proc_sum_data
.ps_nrunnable
;
782 for (i
= samples
- 1; i
> 0; --i
)
784 load
+= proc_sum_data
.ps_nrun
[j
];
785 if (j
++ == PS_NRUNSIZE
)
790 loadavg
[elem
++] = load
/ samples
/ cpus
;
793 # if !defined (LDAV_DONE) && defined (DGUX)
795 /* This call can return -1 for an error, but with good args
796 it's not supposed to fail. The first argument is for no
797 apparent reason of type `long int *'. */
798 dg_sys_info ((long int *) &load_info
,
799 DG_SYS_INFO_LOAD_INFO_TYPE
,
800 DG_SYS_INFO_LOAD_VERSION_0
);
803 loadavg
[elem
++] = load_info
.one_minute
;
805 loadavg
[elem
++] = load_info
.five_minute
;
807 loadavg
[elem
++] = load_info
.fifteen_minute
;
810 # if !defined (LDAV_DONE) && defined (apollo)
812 /* Apollo code from lisch@mentorg.com (Ray Lischner).
814 This system call is not documented. The load average is obtained as
815 three long integers, for the load average over the past minute,
816 five minutes, and fifteen minutes. Each value is a scaled integer,
817 with 16 bits of integer part and 16 bits of fraction part.
819 I'm not sure which operating system first supported this system call,
820 but I know that SR10.2 supports it. */
822 extern void proc1_$
get_loadav ();
823 unsigned long load_ave
[3];
825 proc1_$
get_loadav (load_ave
);
828 loadavg
[elem
++] = load_ave
[0] / 65536.0;
830 loadavg
[elem
++] = load_ave
[1] / 65536.0;
832 loadavg
[elem
++] = load_ave
[2] / 65536.0;
835 # if !defined (LDAV_DONE) && defined (OSF_MIPS)
838 struct tbl_loadavg load_ave
;
839 table (TBL_LOADAVG
, 0, &load_ave
, 1, sizeof (load_ave
));
841 = (load_ave
.tl_lscale
== 0
842 ? load_ave
.tl_avenrun
.d
[0]
843 : (load_ave
.tl_avenrun
.l
[0] / (double) load_ave
.tl_lscale
));
844 # endif /* OSF_MIPS */
846 # if !defined (LDAV_DONE) && (defined (__MSDOS__) || defined (WINDOWS32))
850 /* A faithful emulation is going to have to be saved for a rainy day. */
851 for ( ; elem
< nelem
; elem
++)
855 # endif /* __MSDOS__ || WINDOWS32 */
857 # if !defined (LDAV_DONE) && defined (OSF_ALPHA) /* OSF/1 */
860 struct tbl_loadavg load_ave
;
861 table (TBL_LOADAVG
, 0, &load_ave
, 1, sizeof (load_ave
));
862 for (elem
= 0; elem
< nelem
; elem
++)
864 = (load_ave
.tl_lscale
== 0
865 ? load_ave
.tl_avenrun
.d
[elem
]
866 : (load_ave
.tl_avenrun
.l
[elem
] / (double) load_ave
.tl_lscale
));
867 # endif /* OSF_ALPHA */
869 # if ! defined LDAV_DONE && defined __VMS /* VMS */
870 /* VMS specific code -- read from the Load Ave driver. */
872 LOAD_AVE_TYPE load_ave
[3];
873 static bool getloadavg_initialized
;
882 /* Ensure that there is a channel open to the load ave device. */
883 if (!getloadavg_initialized
)
885 /* Attempt to open the channel. */
887 descriptor
.dsc$w_length
= 18;
888 descriptor
.dsc$a_pointer
= "$$VMS_LOAD_AVERAGE";
890 $
DESCRIPTOR (descriptor
, "LAV0:");
892 if (sys$
assign (&descriptor
, &channel
, 0, 0) & 1)
893 getloadavg_initialized
= true;
896 /* Read the load average vector. */
897 if (getloadavg_initialized
898 && !(sys$
qiow (0, channel
, IO$_READVBLK
, 0, 0, 0,
899 load_ave
, 12, 0, 0, 0, 0) & 1))
901 sys$
dassgn (channel
);
902 getloadavg_initialized
= false;
905 if (!getloadavg_initialized
)
910 # endif /* ! defined LDAV_DONE && defined __VMS */
912 # if ! defined LDAV_DONE && defined LOAD_AVE_TYPE && ! defined __VMS
913 /* IRIX, other old systems */
915 /* UNIX-specific code -- read the average from /dev/kmem. */
917 # define LDAV_PRIVILEGED /* This code requires special installation. */
919 LOAD_AVE_TYPE load_ave
[3];
921 /* Get the address of LDAV_SYMBOL. */
925 # if ! defined NLIST_STRUCT || ! defined N_NAME_POINTER
926 strcpy (name_list
[0].n_name
, LDAV_SYMBOL
);
927 strcpy (name_list
[1].n_name
, "");
928 # else /* NLIST_STRUCT */
929 # ifdef HAVE_STRUCT_NLIST_N_UN_N_NAME
930 name_list
[0].n_un
.n_name
= LDAV_SYMBOL
;
931 name_list
[1].n_un
.n_name
= 0;
932 # else /* not HAVE_STRUCT_NLIST_N_UN_N_NAME */
933 name_list
[0].n_name
= LDAV_SYMBOL
;
934 name_list
[1].n_name
= 0;
935 # endif /* not HAVE_STRUCT_NLIST_N_UN_N_NAME */
936 # endif /* NLIST_STRUCT */
940 # if !(defined (_AIX) && !defined (ps2))
941 nlist (KERNEL_FILE
, name_list
)
943 knlist (name_list
, 1, sizeof (name_list
[0]))
946 /* Omit "&& name_list[0].n_type != 0 " -- it breaks on Sun386i. */
948 # ifdef FIXUP_KERNEL_SYMBOL_ADDR
949 FIXUP_KERNEL_SYMBOL_ADDR (name_list
);
951 offset
= name_list
[0].n_value
;
953 # endif /* !SUNOS_5 */
955 ptrdiff_t ldav_off
= sysmp (MP_KERNADDR
, MPKA_AVENRUN
);
957 offset
= (long int) ldav_off
& 0x7fffffff;
961 /* Make sure we have /dev/kmem open. */
962 if (!getloadavg_initialized
)
965 /* Set the channel to close on exec, so it does not
966 litter any child's descriptor table. */
970 int fd
= open ("/dev/kmem", O_RDONLY
| O_CLOEXEC
);
974 if (fd
<= STDERR_FILENO
)
976 int fd1
= fcntl (fd
, F_DUPFD_CLOEXEC
, STDERR_FILENO
+ 1);
984 getloadavg_initialized
= true;
988 /* We pass 0 for the kernel, corefile, and swapfile names
989 to use the currently running kernel. */
990 kd
= kvm_open (0, 0, 0, O_RDONLY
, 0);
993 /* nlist the currently running kernel. */
994 kvm_nlist (kd
, name_list
);
995 offset
= name_list
[0].n_value
;
996 getloadavg_initialized
= true;
998 # endif /* SUNOS_5 */
1001 /* If we can, get the load average values. */
1002 if (offset
&& getloadavg_initialized
)
1004 /* Try to read the load. */
1006 if (lseek (channel
, offset
, 0) == -1L
1007 || read (channel
, (char *) load_ave
, sizeof (load_ave
))
1008 != sizeof (load_ave
))
1011 getloadavg_initialized
= false;
1013 # else /* SUNOS_5 */
1014 if (kvm_read (kd
, offset
, (char *) load_ave
, sizeof (load_ave
))
1015 != sizeof (load_ave
))
1018 getloadavg_initialized
= false;
1020 # endif /* SUNOS_5 */
1023 if (offset
== 0 || !getloadavg_initialized
)
1028 # endif /* ! defined LDAV_DONE && defined LOAD_AVE_TYPE && ! defined __VMS */
1030 # if !defined (LDAV_DONE) && defined (LOAD_AVE_TYPE) /* Including VMS. */
1032 loadavg
[elem
++] = LDAV_CVT (load_ave
[0]);
1034 loadavg
[elem
++] = LDAV_CVT (load_ave
[1]);
1036 loadavg
[elem
++] = LDAV_CVT (load_ave
[2]);
1039 # endif /* !LDAV_DONE && LOAD_AVE_TYPE */
1041 # if !defined LDAV_DONE