1 /* Get the system load averages.
2 Copyright (C) 1985, 86, 87, 88, 89, 91, 92, 93, 1994, 1995, 1997, 2003
3 Free Software Foundation, Inc.
5 NOTE: The canonical source of this file is maintained with gnulib.
6 Bugs can be reported to bug-gnulib@gnu.org.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
23 /* Compile-time symbols that this file uses:
25 HAVE_PSTAT_GETDYNAMIC Define this if your system has the
26 pstat_getdynamic function. I think it
27 is unique to HPUX9. The best way to get the
28 definition is through the AC_FUNC_GETLOADAVG
29 macro that comes with autoconf 2.13 or newer.
30 If that isn't an option, then just put
31 AC_CHECK_FUNCS(pstat_getdynamic) in your
33 FIXUP_KERNEL_SYMBOL_ADDR() Adjust address in returned struct nlist.
34 KERNEL_FILE Pathname of the kernel to nlist.
35 LDAV_CVT() Scale the load average from the kernel.
37 LDAV_SYMBOL Name of kernel symbol giving load average.
38 LOAD_AVE_TYPE Type of the load average array in the kernel.
39 Must be defined unless one of
40 apollo, DGUX, NeXT, or UMAX is defined;
42 otherwise, no load average is available.
43 HAVE_NLIST_H nlist.h is available. NLIST_STRUCT defaults
45 NLIST_STRUCT Include nlist.h, not a.out.h, and
46 the nlist n_name element is a pointer,
48 HAVE_STRUCT_NLIST_N_UN_N_NAME `n_un.n_name' is member of `struct nlist'.
49 LINUX_LDAV_FILE [__linux__]: File containing load averages.
50 HAVE_LOCALE_H locale.h is available.
51 HAVE_SETLOCALE The `setlocale' function is available.
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 filesystem mounted.
73 Support from Michael K. Johnson.
74 __NetBSD__ NetBSD: assumes /kern filesystem mounted.
76 In addition, to avoid nesting many #ifdefs, we internally set
77 LDAV_DONE to indicate that the load average has been computed.
79 We also #define LDAV_PRIVILEGED if a program will require
80 special installation to be able to call getloadavg. */
82 /* This should always be first. */
87 #include <sys/types.h>
89 /* Both the Emacs and non-Emacs sections want this. Some
90 configuration files' definitions for the LOAD_AVE_CVT macro (like
91 sparc.h's) use macros like FSCALE, defined here. */
92 #if defined (unix) || defined (__unix)
93 # include <sys/param.h>
97 /* Exclude all the code except the test program at the end
98 if the system has its own `getloadavg' function.
100 The declaration of `errno' is needed by the test program
101 as well as the function itself, so it comes first. */
112 #ifndef HAVE_SETLOCALE
113 # define setlocale(Category, Locale) /* empty */
116 #ifndef HAVE_GETLOADAVG
118 /* The existing Emacs configuration files define a macro called
119 LOAD_AVE_CVT, which accepts a value of type LOAD_AVE_TYPE, and
120 returns the load average multiplied by 100. What we actually want
121 is a macro called LDAV_CVT, which returns the load average as an
124 For backwards compatibility, we'll define LDAV_CVT in terms of
125 LOAD_AVE_CVT, but future machine config files should just define
126 LDAV_CVT directly. */
128 # if !defined(LDAV_CVT) && defined(LOAD_AVE_CVT)
129 # define LDAV_CVT(n) (LOAD_AVE_CVT (n) / 100.0)
132 # if !defined (BSD) && defined (ultrix)
133 /* Ultrix behaves like BSD on Vaxen. */
138 /* NeXT in the 2.{0,1,2} releases defines BSD in <sys/param.h>, which
139 conflicts with the definition understood in this file, that this
143 /* NeXT defines FSCALE in <sys/param.h>. However, we take FSCALE being
144 defined to mean that the nlist method should be used, which is not true. */
148 /* Same issues as for NeXT apply to the HURD-based GNU system. */
152 # endif /* __GNU__ */
154 /* Set values that are different from the defaults, which are
155 set a little farther down with #ifndef. */
158 /* Some shorthands. */
160 # if defined (HPUX) && !defined (hpux)
164 # if defined (__hpux) && !defined (hpux)
168 # if defined (__sun) && !defined (sun)
172 # if defined(hp300) && !defined(hpux)
176 # if defined(ultrix) && defined(mips)
180 # if defined (__SVR4) && !defined (SVR4)
184 # if (defined(sun) && defined(SVR4)) || defined (SOLARIS2)
188 # if defined (__osf__) && (defined (__alpha) || defined (__alpha__))
190 # include <sys/mbuf.h>
191 # include <sys/socket.h>
192 # include <net/route.h>
193 # include <sys/table.h>
196 # if defined (__osf__) && (defined (mips) || defined (__mips__))
198 # include <sys/table.h>
201 /* UTek's /bin/cc on the 4300 has no architecture specific cpp define by
202 default, but _MACH_IND_SYS_TYPES is defined in <sys/types.h>. Combine
203 that with a couple of other things and we'll have a unique match. */
204 # if !defined (tek4300) && defined (unix) && defined (m68k) && defined (mc68000) && defined (mc68020) && defined (_MACH_IND_SYS_TYPES)
205 # define tek4300 /* Define by emacs, but not by other users. */
209 /* VAX C can't handle multi-line #ifs, or lines longer than 256 chars. */
210 # ifndef LOAD_AVE_TYPE
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
241 # define LOAD_AVE_TYPE long
245 # define LOAD_AVE_TYPE long
248 # if defined (ardent) && defined (titan)
249 # define LOAD_AVE_TYPE long
253 # define LOAD_AVE_TYPE long
256 # if defined(alliant) && defined(i860) /* Alliant FX/2800 */
257 # define LOAD_AVE_TYPE long
261 # define LOAD_AVE_TYPE long
265 # define LOAD_AVE_TYPE double
267 # define LDAV_CVT(n) (n)
271 # endif /* No LOAD_AVE_TYPE. */
274 /* <sys/param.h> defines an incorrect value for FSCALE on Alpha OSF/1,
275 according to ghazi@noc.rutgers.edu. */
277 # define FSCALE 1024.0
280 # if defined(alliant) && defined(i860) /* Alliant FX/2800 */
281 /* <sys/param.h> defines an incorrect value for FSCALE on an
282 Alliant FX/2800 Concentrix 2.2, according to ghazi@noc.rutgers.edu. */
284 # define FSCALE 100.0
290 /* SunOS and some others define FSCALE in sys/param.h. */
293 # define FSCALE 2048.0
296 # if defined(MIPS) || defined(SVR4) || defined(decstation)
300 # if defined (sgi) || defined (sequent)
301 /* Sometimes both MIPS and sgi are defined, so FSCALE was just defined
302 above under #ifdef MIPS. But we want the sgi value. */
304 # define FSCALE 1000.0
307 # if defined (ardent) && defined (titan)
308 # define FSCALE 65536.0
312 # define FSCALE 100.0
316 # define FSCALE 65536.0
319 # endif /* Not FSCALE. */
321 # if !defined (LDAV_CVT) && defined (FSCALE)
322 # define LDAV_CVT(n) (((double) (n)) / FSCALE)
325 # ifndef NLIST_STRUCT
327 # define NLIST_STRUCT
331 # if defined(sgi) || (defined(mips) && !defined(BSD))
332 # define FIXUP_KERNEL_SYMBOL_ADDR(nl) ((nl)[0].n_value &= ~(1 << 31))
336 # if !defined (KERNEL_FILE) && defined (sequent)
337 # define KERNEL_FILE "/dynix"
340 # if !defined (KERNEL_FILE) && defined (hpux)
341 # define KERNEL_FILE "/hp-ux"
344 # if !defined(KERNEL_FILE) && (defined(_SEQUENT_) || defined(MIPS) || defined(SVR4) || defined(ISC) || defined (sgi) || (defined (ardent) && defined (titan)))
345 # define KERNEL_FILE "/unix"
349 # if !defined (LDAV_SYMBOL) && defined (alliant)
350 # define LDAV_SYMBOL "_Loadavg"
353 # if !defined(LDAV_SYMBOL) && ((defined(hpux) && !defined(hp9000s300)) || defined(_SEQUENT_) || defined(SVR4) || defined(ISC) || defined(sgi) || (defined (ardent) && defined (titan)) || defined (_AIX))
354 # define LDAV_SYMBOL "avenrun"
357 # ifdef HAVE_UNISTD_H
363 /* LOAD_AVE_TYPE should only get defined if we're going to use the
365 # if !defined(LOAD_AVE_TYPE) && (defined(BSD) || defined(LDAV_CVT) || defined(KERNEL_FILE) || defined(LDAV_SYMBOL))
366 # define LOAD_AVE_TYPE double
369 # ifdef LOAD_AVE_TYPE
373 # ifndef NLIST_STRUCT
375 # else /* NLIST_STRUCT */
377 # endif /* NLIST_STRUCT */
385 # if defined (hpux) && defined (HAVE_PSTAT_GETDYNAMIC)
386 # include <sys/pstat.h>
390 # define KERNEL_FILE "/vmunix"
391 # endif /* KERNEL_FILE */
394 # define LDAV_SYMBOL "_avenrun"
395 # endif /* LDAV_SYMBOL */
396 # endif /* __linux__ */
402 # include <descrip.h>
404 # include <vms/iodef.h>
409 # define LDAV_CVT(n) ((double) (n))
410 # endif /* !LDAV_CVT */
412 # endif /* LOAD_AVE_TYPE */
414 # if defined(__GNU__) && !defined (NeXT)
415 /* Note that NeXT Openstep defines __GNU__ even though it should not. */
416 /* GNU system acts much like NeXT, for load average purposes,
419 # define host_self mach_host_self
423 # ifdef HAVE_MACH_MACH_H
424 # include <mach/mach.h>
431 # include <sys/sysmp.h>
437 # include <sys/time.h>
438 # include <sys/wait.h>
439 # include <sys/syscall.h>
442 # include <machine/cpu.h>
443 # include <inq_stats/statistics.h>
444 # include <inq_stats/sysstats.h>
445 # include <inq_stats/cpustats.h>
446 # include <inq_stats/procstats.h>
447 # else /* Not UMAX_43. */
448 # include <sys/sysdefs.h>
449 # include <sys/statistics.h>
450 # include <sys/sysstats.h>
451 # include <sys/cpudefs.h>
452 # include <sys/cpustats.h>
453 # include <sys/procstats.h>
454 # endif /* Not UMAX_43. */
458 # include <sys/dg_sys_info.h>
461 # if defined(HAVE_FCNTL_H) || defined(_POSIX_VERSION)
464 # include <sys/file.h>
467 /* Avoid static vars inside a function since in HPUX they dump as pure. */
470 static processor_set_t default_set
;
471 static int getloadavg_initialized
;
475 static unsigned int cpus
= 0;
476 static unsigned int samples
;
480 static struct dg_sys_info_load_info load_info
; /* what-a-mouthful! */
483 #if !defined(HAVE_LIBKSTAT) && defined(LOAD_AVE_TYPE)
484 /* File descriptor open to /dev/kmem or VMS load ave driver. */
486 /* Nonzero iff channel is valid. */
487 static int getloadavg_initialized
;
488 /* Offset in kmem to seek to read load average, or 0 means invalid. */
491 # if !defined(VMS) && !defined(sgi) && !defined(__linux__)
492 static struct nlist nl
[2];
493 # endif /* Not VMS or sgi */
497 # endif /* SUNOS_5 */
499 #endif /* LOAD_AVE_TYPE && !HAVE_LIBKSTAT */
501 /* Put the 1 minute, 5 minute and 15 minute load averages
502 into the first NELEM elements of LOADAVG.
503 Return the number written (never more than 3, but may be less than NELEM),
504 or -1 if an error occurred. */
507 getloadavg (loadavg
, nelem
)
511 int elem
= 0; /* Return value. */
513 # ifdef NO_GET_LOAD_AVG
515 /* Set errno to zero to indicate that there was no particular error;
516 this function just can't work at all on this system. */
521 # if !defined (LDAV_DONE) && defined (HAVE_LIBKSTAT)
522 /* Use libkstat because we don't have to be root. */
531 ksp
= kstat_lookup (kc
, "unix", 0, "system_misc");
534 if (kstat_read (kc
, ksp
, 0) == -1)
538 kn
= kstat_data_lookup (ksp
, "avenrun_1min");
541 /* Return -1 if no load average information is available. */
547 loadavg
[elem
++] = (double) kn
->value
.ul
/FSCALE
;
551 kn
= kstat_data_lookup (ksp
, "avenrun_5min");
554 loadavg
[elem
++] = (double) kn
->value
.ul
/FSCALE
;
558 kn
= kstat_data_lookup (ksp
, "avenrun_15min");
560 loadavg
[elem
++] = (double) kn
->value
.ul
/FSCALE
;
566 # endif /* HAVE_LIBKSTAT */
568 # if !defined (LDAV_DONE) && defined (hpux) && defined (HAVE_PSTAT_GETDYNAMIC)
569 /* Use pstat_getdynamic() because we don't have to be root. */
571 # undef LOAD_AVE_TYPE
573 struct pst_dynamic dyn_info
;
574 if (pstat_getdynamic (&dyn_info
, sizeof (dyn_info
), 0, 0) < 0)
577 loadavg
[elem
++] = dyn_info
.psd_avg_1_min
;
579 loadavg
[elem
++] = dyn_info
.psd_avg_5_min
;
581 loadavg
[elem
++] = dyn_info
.psd_avg_15_min
;
583 # endif /* hpux && HAVE_PSTAT_GETDYNAMIC */
585 # if !defined (LDAV_DONE) && defined (__linux__)
587 # undef LOAD_AVE_TYPE
589 # ifndef LINUX_LDAV_FILE
590 # define LINUX_LDAV_FILE "/proc/loadavg"
597 fd
= open (LINUX_LDAV_FILE
, O_RDONLY
);
600 count
= read (fd
, ldavgbuf
, 40);
605 /* The following sscanf must use the C locale. */
606 setlocale (LC_NUMERIC
, "C");
607 count
= sscanf (ldavgbuf
, "%lf %lf %lf",
608 &load_ave
[0], &load_ave
[1], &load_ave
[2]);
609 setlocale (LC_NUMERIC
, "");
613 for (elem
= 0; elem
< nelem
&& elem
< count
; elem
++)
614 loadavg
[elem
] = load_ave
[elem
];
618 # endif /* __linux__ */
620 # if !defined (LDAV_DONE) && defined (__NetBSD__)
622 # undef LOAD_AVE_TYPE
624 # ifndef NETBSD_LDAV_FILE
625 # define NETBSD_LDAV_FILE "/kern/loadavg"
628 unsigned long int load_ave
[3], scale
;
632 fp
= fopen (NETBSD_LDAV_FILE
, "r");
635 count
= fscanf (fp
, "%lu %lu %lu %lu\n",
636 &load_ave
[0], &load_ave
[1], &load_ave
[2],
642 for (elem
= 0; elem
< nelem
; elem
++)
643 loadavg
[elem
] = (double) load_ave
[elem
] / (double) scale
;
647 # endif /* __NetBSD__ */
649 # if !defined (LDAV_DONE) && defined (NeXT)
651 /* The NeXT code was adapted from iscreen 3.2. */
654 struct processor_set_basic_info info
;
657 /* We only know how to get the 1-minute average for this system,
658 so even if the caller asks for more than 1, we only return 1. */
660 if (!getloadavg_initialized
)
662 if (processor_set_default (host_self (), &default_set
) == KERN_SUCCESS
)
663 getloadavg_initialized
= 1;
666 if (getloadavg_initialized
)
668 info_count
= PROCESSOR_SET_BASIC_INFO_COUNT
;
669 if (processor_set_info (default_set
, PROCESSOR_SET_BASIC_INFO
, &host
,
670 (processor_set_info_t
) &info
, &info_count
)
672 getloadavg_initialized
= 0;
676 loadavg
[elem
++] = (double) info
.load_average
/ LOAD_SCALE
;
680 if (!getloadavg_initialized
)
684 # if !defined (LDAV_DONE) && defined (UMAX)
686 /* UMAX 4.2, which runs on the Encore Multimax multiprocessor, does not
687 have a /dev/kmem. Information about the workings of the running kernel
688 can be gathered with inq_stats system calls.
689 We only know how to get the 1-minute average for this system. */
691 struct proc_summary proc_sum_data
;
692 struct stat_descr proc_info
;
694 register unsigned int i
, j
;
698 register unsigned int c
, i
;
699 struct cpu_config conf
;
700 struct stat_descr desc
;
703 desc
.sd_subsys
= SUBSYS_CPU
;
704 desc
.sd_type
= CPUTYPE_CONFIG
;
705 desc
.sd_addr
= (char *) &conf
;
706 desc
.sd_size
= sizeof conf
;
708 if (inq_stats (1, &desc
))
712 for (i
= 0; i
< conf
.config_maxclass
; ++i
)
714 struct class_stats stats
;
715 bzero ((char *) &stats
, sizeof stats
);
717 desc
.sd_type
= CPUTYPE_CLASS
;
719 desc
.sd_addr
= (char *) &stats
;
720 desc
.sd_size
= sizeof stats
;
722 if (inq_stats (1, &desc
))
725 c
+= stats
.class_numcpus
;
728 samples
= cpus
< 2 ? 3 : (2 * cpus
/ 3);
731 proc_info
.sd_next
= 0;
732 proc_info
.sd_subsys
= SUBSYS_PROC
;
733 proc_info
.sd_type
= PROCTYPE_SUMMARY
;
734 proc_info
.sd_addr
= (char *) &proc_sum_data
;
735 proc_info
.sd_size
= sizeof (struct proc_summary
);
736 proc_info
.sd_sizeused
= 0;
738 if (inq_stats (1, &proc_info
) != 0)
741 load
= proc_sum_data
.ps_nrunnable
;
743 for (i
= samples
- 1; i
> 0; --i
)
745 load
+= proc_sum_data
.ps_nrun
[j
];
746 if (j
++ == PS_NRUNSIZE
)
751 loadavg
[elem
++] = load
/ samples
/ cpus
;
754 # if !defined (LDAV_DONE) && defined (DGUX)
756 /* This call can return -1 for an error, but with good args
757 it's not supposed to fail. The first argument is for no
758 apparent reason of type `long int *'. */
759 dg_sys_info ((long int *) &load_info
,
760 DG_SYS_INFO_LOAD_INFO_TYPE
,
761 DG_SYS_INFO_LOAD_VERSION_0
);
764 loadavg
[elem
++] = load_info
.one_minute
;
766 loadavg
[elem
++] = load_info
.five_minute
;
768 loadavg
[elem
++] = load_info
.fifteen_minute
;
771 # if !defined (LDAV_DONE) && defined (apollo)
773 /* Apollo code from lisch@mentorg.com (Ray Lischner).
775 This system call is not documented. The load average is obtained as
776 three long integers, for the load average over the past minute,
777 five minutes, and fifteen minutes. Each value is a scaled integer,
778 with 16 bits of integer part and 16 bits of fraction part.
780 I'm not sure which operating system first supported this system call,
781 but I know that SR10.2 supports it. */
783 extern void proc1_$
get_loadav ();
784 unsigned long load_ave
[3];
786 proc1_$
get_loadav (load_ave
);
789 loadavg
[elem
++] = load_ave
[0] / 65536.0;
791 loadavg
[elem
++] = load_ave
[1] / 65536.0;
793 loadavg
[elem
++] = load_ave
[2] / 65536.0;
796 # if !defined (LDAV_DONE) && defined (OSF_MIPS)
799 struct tbl_loadavg load_ave
;
800 table (TBL_LOADAVG
, 0, &load_ave
, 1, sizeof (load_ave
));
802 = (load_ave
.tl_lscale
== 0
803 ? load_ave
.tl_avenrun
.d
[0]
804 : (load_ave
.tl_avenrun
.l
[0] / (double) load_ave
.tl_lscale
));
805 # endif /* OSF_MIPS */
807 # if !defined (LDAV_DONE) && (defined (__MSDOS__) || defined (WINDOWS32))
810 /* A faithful emulation is going to have to be saved for a rainy day. */
811 for ( ; elem
< nelem
; elem
++)
815 # endif /* __MSDOS__ || WINDOWS32 */
817 # if !defined (LDAV_DONE) && defined (OSF_ALPHA)
820 struct tbl_loadavg load_ave
;
821 table (TBL_LOADAVG
, 0, &load_ave
, 1, sizeof (load_ave
));
822 for (elem
= 0; elem
< nelem
; elem
++)
824 = (load_ave
.tl_lscale
== 0
825 ? load_ave
.tl_avenrun
.d
[elem
]
826 : (load_ave
.tl_avenrun
.l
[elem
] / (double) load_ave
.tl_lscale
));
827 # endif /* OSF_ALPHA */
829 # if !defined (LDAV_DONE) && defined (VMS)
830 /* VMS specific code -- read from the Load Ave driver. */
832 LOAD_AVE_TYPE load_ave
[3];
833 static int getloadavg_initialized
= 0;
842 /* Ensure that there is a channel open to the load ave device. */
843 if (!getloadavg_initialized
)
845 /* Attempt to open the channel. */
847 descriptor
.dsc$w_length
= 18;
848 descriptor
.dsc$a_pointer
= "$$VMS_LOAD_AVERAGE";
850 $
DESCRIPTOR (descriptor
, "LAV0:");
852 if (sys$
assign (&descriptor
, &channel
, 0, 0) & 1)
853 getloadavg_initialized
= 1;
856 /* Read the load average vector. */
857 if (getloadavg_initialized
858 && !(sys$
qiow (0, channel
, IO$_READVBLK
, 0, 0, 0,
859 load_ave
, 12, 0, 0, 0, 0) & 1))
861 sys$
dassgn (channel
);
862 getloadavg_initialized
= 0;
865 if (!getloadavg_initialized
)
869 # if !defined (LDAV_DONE) && defined(LOAD_AVE_TYPE) && !defined(VMS)
871 /* UNIX-specific code -- read the average from /dev/kmem. */
873 # define LDAV_PRIVILEGED /* This code requires special installation. */
875 LOAD_AVE_TYPE load_ave
[3];
877 /* Get the address of LDAV_SYMBOL. */
881 # ifndef NLIST_STRUCT
882 strcpy (nl
[0].n_name
, LDAV_SYMBOL
);
883 strcpy (nl
[1].n_name
, "");
884 # else /* NLIST_STRUCT */
885 # ifdef HAVE_STRUCT_NLIST_N_UN_N_NAME
886 nl
[0].n_un
.n_name
= LDAV_SYMBOL
;
887 nl
[1].n_un
.n_name
= 0;
888 # else /* not HAVE_STRUCT_NLIST_N_UN_N_NAME */
889 nl
[0].n_name
= LDAV_SYMBOL
;
891 # endif /* not HAVE_STRUCT_NLIST_N_UN_N_NAME */
892 # endif /* NLIST_STRUCT */
896 # if !(defined (_AIX) && !defined (ps2))
897 nlist (KERNEL_FILE
, nl
)
899 knlist (nl
, 1, sizeof (nl
[0]))
902 /* Omit "&& nl[0].n_type != 0 " -- it breaks on Sun386i. */
904 # ifdef FIXUP_KERNEL_SYMBOL_ADDR
905 FIXUP_KERNEL_SYMBOL_ADDR (nl
);
907 offset
= nl
[0].n_value
;
909 # endif /* !SUNOS_5 */
913 ldav_off
= sysmp (MP_KERNADDR
, MPKA_AVENRUN
);
915 offset
= (long) ldav_off
& 0x7fffffff;
919 /* Make sure we have /dev/kmem open. */
920 if (!getloadavg_initialized
)
923 channel
= open ("/dev/kmem", 0);
926 /* Set the channel to close on exec, so it does not
927 litter any child's descriptor table. */
930 # define FD_CLOEXEC 1
932 (void) fcntl (channel
, F_SETFD
, FD_CLOEXEC
);
934 getloadavg_initialized
= 1;
937 /* We pass 0 for the kernel, corefile, and swapfile names
938 to use the currently running kernel. */
939 kd
= kvm_open (0, 0, 0, O_RDONLY
, 0);
942 /* nlist the currently running kernel. */
944 offset
= nl
[0].n_value
;
945 getloadavg_initialized
= 1;
947 # endif /* SUNOS_5 */
950 /* If we can, get the load average values. */
951 if (offset
&& getloadavg_initialized
)
953 /* Try to read the load. */
955 if (lseek (channel
, offset
, 0) == -1L
956 || read (channel
, (char *) load_ave
, sizeof (load_ave
))
957 != sizeof (load_ave
))
960 getloadavg_initialized
= 0;
963 if (kvm_read (kd
, offset
, (char *) load_ave
, sizeof (load_ave
))
964 != sizeof (load_ave
))
967 getloadavg_initialized
= 0;
969 # endif /* SUNOS_5 */
972 if (offset
== 0 || !getloadavg_initialized
)
974 # endif /* LOAD_AVE_TYPE and not VMS */
976 # if !defined (LDAV_DONE) && defined (LOAD_AVE_TYPE) /* Including VMS. */
978 loadavg
[elem
++] = LDAV_CVT (load_ave
[0]);
980 loadavg
[elem
++] = LDAV_CVT (load_ave
[1]);
982 loadavg
[elem
++] = LDAV_CVT (load_ave
[2]);
985 # endif /* !LDAV_DONE && LOAD_AVE_TYPE */
990 /* Set errno to zero to indicate that there was no particular error;
991 this function just can't work at all on this system. */
997 #endif /* ! HAVE_GETLOADAVG */
1008 naptime
= atoi (argv
[1]);
1015 errno
= 0; /* Don't be misled if it doesn't set errno. */
1016 loads
= getloadavg (avg
, 3);
1019 perror ("Error getting load average");
1023 printf ("1-minute: %f ", avg
[0]);
1025 printf ("5-minute: %f ", avg
[1]);
1027 printf ("15-minute: %f ", avg
[2]);