1 /* Get the system load averages.
2 Copyright (C) 1985, 86, 87, 88, 89, 91, 92, 93, 1994, 1995, 1997
3 Free Software Foundation, Inc.
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)
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.
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,
20 /* Compile-time symbols that this file uses:
22 HAVE_PSTAT_GETDYNAMIC Define this if your system has the
23 pstat_getdynamic function. I think it
24 is unique to HPUX9. The best way to get the
25 definition is through the AC_FUNC_GETLOADAVG
26 macro that comes with autoconf 2.13 or newer.
27 If that isn't an option, then just put
28 AC_CHECK_FUNCS(pstat_getdynamic) in your
30 FIXUP_KERNEL_SYMBOL_ADDR() Adjust address in returned struct nlist.
31 KERNEL_FILE Pathname of the kernel to nlist.
32 LDAV_CVT() Scale the load average from the kernel.
34 LDAV_SYMBOL Name of kernel symbol giving load average.
35 LOAD_AVE_TYPE Type of the load average array in the kernel.
36 Must be defined unless one of
37 apollo, DGUX, NeXT, or UMAX is defined;
39 otherwise, no load average is available.
40 NLIST_STRUCT Include nlist.h, not a.out.h, and
41 the nlist n_name element is a pointer,
43 NLIST_NAME_UNION struct nlist has an n_un member, not n_name.
44 LINUX_LDAV_FILE [__linux__]: File containing load averages.
46 Specific system predefines this file uses, aside from setting
47 default values if not emacs:
50 BSD Real BSD, not just BSD-like.
53 eunice UNIX emulator under VMS.
55 __MSDOS__ No-op for MSDOS.
58 sequent Sequent Dynix 3.x.x (BSD)
59 _SEQUENT_ Sequent DYNIX/ptx 1.x.x (SYSV)
60 sony_news NEWS-OS (works at least for 4.1C)
64 WINDOWS32 No-op for Windows95/NT.
65 __linux__ Linux: assumes /proc filesystem mounted.
66 Support from Michael K. Johnson.
67 __NetBSD__ NetBSD: assumes /kern filesystem mounted.
69 In addition, to avoid nesting many #ifdefs, we internally set
70 LDAV_DONE to indicate that the load average has been computed.
72 We also #define LDAV_PRIVILEGED if a program will require
73 special installation to be able to call getloadavg. */
75 /* This should always be first. */
80 #include <sys/types.h>
82 /* Both the Emacs and non-Emacs sections want this. Some
83 configuration files' definitions for the LOAD_AVE_CVT macro (like
84 sparc.h's) use macros like FSCALE, defined here. */
85 #if defined (unix) || defined (__unix)
86 # include <sys/param.h>
90 /* Exclude all the code except the test program at the end
91 if the system has its own `getloadavg' function.
93 The declaration of `errno' is needed by the test program
94 as well as the function itself, so it comes first. */
102 #ifndef HAVE_GETLOADAVG
105 /* The existing Emacs configuration files define a macro called
106 LOAD_AVE_CVT, which accepts a value of type LOAD_AVE_TYPE, and
107 returns the load average multiplied by 100. What we actually want
108 is a macro called LDAV_CVT, which returns the load average as an
111 For backwards compatibility, we'll define LDAV_CVT in terms of
112 LOAD_AVE_CVT, but future machine config files should just define
113 LDAV_CVT directly. */
115 # if !defined(LDAV_CVT) && defined(LOAD_AVE_CVT)
116 # define LDAV_CVT(n) (LOAD_AVE_CVT (n) / 100.0)
119 # if !defined (BSD) && defined (ultrix)
120 /* Ultrix behaves like BSD on Vaxen. */
125 /* NeXT in the 2.{0,1,2} releases defines BSD in <sys/param.h>, which
126 conflicts with the definition understood in this file, that this
130 /* NeXT defines FSCALE in <sys/param.h>. However, we take FSCALE being
131 defined to mean that the nlist method should be used, which is not true. */
135 /* Same issues as for NeXT apply to the HURD-based GNU system. */
139 # endif /* __GNU__ */
141 /* Set values that are different from the defaults, which are
142 set a little farther down with #ifndef. */
145 /* Some shorthands. */
147 # if defined (HPUX) && !defined (hpux)
151 # if defined (__hpux) && !defined (hpux)
155 # if defined (__sun) && !defined (sun)
159 # if defined(hp300) && !defined(hpux)
163 # if defined(ultrix) && defined(mips)
167 # if defined (__SVR4) && !defined (SVR4)
171 # if (defined(sun) && defined(SVR4)) || defined (SOLARIS2)
175 # if defined (__osf__) && (defined (__alpha) || defined (__alpha__))
177 # include <sys/mbuf.h>
178 # include <sys/socket.h>
179 # include <net/route.h>
180 # include <sys/table.h>
183 # if defined (__osf__) && (defined (mips) || defined (__mips__))
185 # include <sys/table.h>
188 /* UTek's /bin/cc on the 4300 has no architecture specific cpp define by
189 default, but _MACH_IND_SYS_TYPES is defined in <sys/types.h>. Combine
190 that with a couple of other things and we'll have a unique match. */
191 # if !defined (tek4300) && defined (unix) && defined (m68k) && defined (mc68000) && defined (mc68020) && defined (_MACH_IND_SYS_TYPES)
192 # define tek4300 /* Define by emacs, but not by other users. */
196 /* VAX C can't handle multi-line #ifs, or lines longer than 256 chars. */
197 # ifndef LOAD_AVE_TYPE
200 # define LOAD_AVE_TYPE long
204 # define LOAD_AVE_TYPE long
208 # define LOAD_AVE_TYPE long
212 # define LOAD_AVE_TYPE long
216 # define LOAD_AVE_TYPE long
220 # define LOAD_AVE_TYPE long
224 # define LOAD_AVE_TYPE long
228 # define LOAD_AVE_TYPE long
232 # define LOAD_AVE_TYPE long
235 # if defined (ardent) && defined (titan)
236 # define LOAD_AVE_TYPE long
240 # define LOAD_AVE_TYPE long
243 # if defined(alliant) && defined(i860) /* Alliant FX/2800 */
244 # define LOAD_AVE_TYPE long
248 # define LOAD_AVE_TYPE long
252 # define LOAD_AVE_TYPE double
254 # define LDAV_CVT(n) (n)
258 # endif /* No LOAD_AVE_TYPE. */
261 /* <sys/param.h> defines an incorrect value for FSCALE on Alpha OSF/1,
262 according to ghazi@noc.rutgers.edu. */
264 # define FSCALE 1024.0
267 # if defined(alliant) && defined(i860) /* Alliant FX/2800 */
268 /* <sys/param.h> defines an incorrect value for FSCALE on an
269 Alliant FX/2800 Concentrix 2.2, according to ghazi@noc.rutgers.edu. */
271 # define FSCALE 100.0
277 /* SunOS and some others define FSCALE in sys/param.h. */
280 # define FSCALE 2048.0
283 # if defined(MIPS) || defined(SVR4) || defined(decstation)
287 # if defined (sgi) || defined (sequent)
288 /* Sometimes both MIPS and sgi are defined, so FSCALE was just defined
289 above under #ifdef MIPS. But we want the sgi value. */
291 # define FSCALE 1000.0
294 # if defined (ardent) && defined (titan)
295 # define FSCALE 65536.0
299 # define FSCALE 100.0
303 # define FSCALE 65536.0
306 # endif /* Not FSCALE. */
308 # if !defined (LDAV_CVT) && defined (FSCALE)
309 # define LDAV_CVT(n) (((double) (n)) / FSCALE)
312 /* VAX C can't handle multi-line #ifs, or lines longer that 256 characters. */
313 # ifndef NLIST_STRUCT
316 # define NLIST_STRUCT
320 # define NLIST_STRUCT
324 # define NLIST_STRUCT
328 # define NLIST_STRUCT
331 # if defined (_SEQUENT_) || defined (sequent)
332 # define NLIST_STRUCT
336 # define NLIST_STRUCT
340 # define NLIST_STRUCT
344 # define NLIST_STRUCT
348 # define NLIST_STRUCT
351 # if defined (ardent) && defined (titan)
352 # define NLIST_STRUCT
356 # define NLIST_STRUCT
360 # define NLIST_STRUCT
363 # if defined(alliant) && defined(i860) /* Alliant FX/2800 */
364 # define NLIST_STRUCT
368 # define NLIST_STRUCT
371 # endif /* defined (NLIST_STRUCT) */
374 # if defined(sgi) || (defined(mips) && !defined(BSD))
375 # define FIXUP_KERNEL_SYMBOL_ADDR(nl) ((nl)[0].n_value &= ~(1 << 31))
379 # if !defined (KERNEL_FILE) && defined (sequent)
380 # define KERNEL_FILE "/dynix"
383 # if !defined (KERNEL_FILE) && defined (hpux)
384 # define KERNEL_FILE "/hp-ux"
387 # if !defined(KERNEL_FILE) && (defined(_SEQUENT_) || defined(MIPS) || defined(SVR4) || defined(ISC) || defined (sgi) || (defined (ardent) && defined (titan)))
388 # define KERNEL_FILE "/unix"
392 # if !defined (LDAV_SYMBOL) && defined (alliant)
393 # define LDAV_SYMBOL "_Loadavg"
396 # if !defined(LDAV_SYMBOL) && ((defined(hpux) && !defined(hp9000s300)) || defined(_SEQUENT_) || defined(SVR4) || defined(ISC) || defined(sgi) || (defined (ardent) && defined (titan)) || defined (_AIX))
397 # define LDAV_SYMBOL "avenrun"
400 # ifdef HAVE_UNISTD_H
406 /* LOAD_AVE_TYPE should only get defined if we're going to use the
408 # if !defined(LOAD_AVE_TYPE) && (defined(BSD) || defined(LDAV_CVT) || defined(KERNEL_FILE) || defined(LDAV_SYMBOL))
409 # define LOAD_AVE_TYPE double
412 # ifdef LOAD_AVE_TYPE
416 # ifndef NLIST_STRUCT
418 # else /* NLIST_STRUCT */
420 # endif /* NLIST_STRUCT */
428 # if defined (hpux) && defined (HAVE_PSTAT_GETDYNAMIC)
429 # include <sys/pstat.h>
433 # define KERNEL_FILE "/vmunix"
434 # endif /* KERNEL_FILE */
437 # define LDAV_SYMBOL "_avenrun"
438 # endif /* LDAV_SYMBOL */
439 # endif /* __linux__ */
445 # include <descrip.h>
447 # include <vms/iodef.h>
452 # define LDAV_CVT(n) ((double) (n))
453 # endif /* !LDAV_CVT */
455 # endif /* LOAD_AVE_TYPE */
457 # if defined(__GNU__) && !defined (NeXT)
458 /* Note that NeXT Openstep defines __GNU__ even though it should not. */
459 /* GNU system acts much like NeXT, for load average purposes,
462 # define host_self mach_host_self
466 # ifdef HAVE_MACH_MACH_H
467 # include <mach/mach.h>
474 # include <sys/sysmp.h>
480 # include <sys/time.h>
481 # include <sys/wait.h>
482 # include <sys/syscall.h>
485 # include <machine/cpu.h>
486 # include <inq_stats/statistics.h>
487 # include <inq_stats/sysstats.h>
488 # include <inq_stats/cpustats.h>
489 # include <inq_stats/procstats.h>
490 # else /* Not UMAX_43. */
491 # include <sys/sysdefs.h>
492 # include <sys/statistics.h>
493 # include <sys/sysstats.h>
494 # include <sys/cpudefs.h>
495 # include <sys/cpustats.h>
496 # include <sys/procstats.h>
497 # endif /* Not UMAX_43. */
501 # include <sys/dg_sys_info.h>
504 # if defined(HAVE_FCNTL_H) || defined(_POSIX_VERSION)
507 # include <sys/file.h>
511 /* Avoid static vars inside a function since in HPUX they dump as pure. */
514 static processor_set_t default_set
;
515 static int getloadavg_initialized
;
519 static unsigned int cpus
= 0;
520 static unsigned int samples
;
524 static struct dg_sys_info_load_info load_info
; /* what-a-mouthful! */
527 #if !defined(HAVE_LIBKSTAT) && defined(LOAD_AVE_TYPE)
528 /* File descriptor open to /dev/kmem or VMS load ave driver. */
530 /* Nonzero iff channel is valid. */
531 static int getloadavg_initialized
;
532 /* Offset in kmem to seek to read load average, or 0 means invalid. */
535 #if !defined(VMS) && !defined(sgi) && !defined(__linux__)
536 static struct nlist nl
[2];
537 #endif /* Not VMS or sgi */
543 #endif /* LOAD_AVE_TYPE && !HAVE_LIBKSTAT */
545 /* Put the 1 minute, 5 minute and 15 minute load averages
546 into the first NELEM elements of LOADAVG.
547 Return the number written (never more than 3, but may be less than NELEM),
548 or -1 if an error occurred. */
551 getloadavg (loadavg
, nelem
)
555 int elem
= 0; /* Return value. */
557 # ifdef NO_GET_LOAD_AVG
559 /* Set errno to zero to indicate that there was no particular error;
560 this function just can't work at all on this system. */
565 # if !defined (LDAV_DONE) && defined (HAVE_LIBKSTAT)
566 /* Use libkstat because we don't have to be root. */
575 ksp
= kstat_lookup (kc
, "unix", 0, "system_misc");
578 if (kstat_read (kc
, ksp
, 0) == -1)
582 kn
= kstat_data_lookup (ksp
, "avenrun_1min");
585 /* Return -1 if no load average information is available. */
591 loadavg
[elem
++] = (double) kn
->value
.ul
/FSCALE
;
595 kn
= kstat_data_lookup (ksp
, "avenrun_5min");
598 loadavg
[elem
++] = (double) kn
->value
.ul
/FSCALE
;
602 kn
= kstat_data_lookup (ksp
, "avenrun_15min");
604 loadavg
[elem
++] = (double) kn
->value
.ul
/FSCALE
;
610 # endif /* HAVE_LIBKSTAT */
612 # if !defined (LDAV_DONE) && defined (hpux) && defined (HAVE_PSTAT_GETDYNAMIC)
613 /* Use pstat_getdynamic() because we don't have to be root. */
615 # undef LOAD_AVE_TYPE
617 struct pst_dynamic dyn_info
;
618 if (pstat_getdynamic (&dyn_info
, sizeof (dyn_info
), 0, 0) < 0)
621 loadavg
[elem
++] = dyn_info
.psd_avg_1_min
;
623 loadavg
[elem
++] = dyn_info
.psd_avg_5_min
;
625 loadavg
[elem
++] = dyn_info
.psd_avg_15_min
;
627 # endif /* hpux && HAVE_PSTAT_GETDYNAMIC */
629 # if !defined (LDAV_DONE) && defined (__linux__)
631 # undef LOAD_AVE_TYPE
633 # ifndef LINUX_LDAV_FILE
634 # define LINUX_LDAV_FILE "/proc/loadavg"
641 fd
= open (LINUX_LDAV_FILE
, O_RDONLY
);
644 count
= read (fd
, ldavgbuf
, 40);
649 count
= sscanf (ldavgbuf
, "%lf %lf %lf",
650 &load_ave
[0], &load_ave
[1], &load_ave
[2]);
654 for (elem
= 0; elem
< nelem
&& elem
< count
; elem
++)
655 loadavg
[elem
] = load_ave
[elem
];
659 # endif /* __linux__ */
661 # if !defined (LDAV_DONE) && defined (__NetBSD__)
663 # undef LOAD_AVE_TYPE
665 # ifndef NETBSD_LDAV_FILE
666 # define NETBSD_LDAV_FILE "/kern/loadavg"
669 unsigned long int load_ave
[3], scale
;
673 fp
= fopen (NETBSD_LDAV_FILE
, "r");
676 count
= fscanf (fp
, "%lu %lu %lu %lu\n",
677 &load_ave
[0], &load_ave
[1], &load_ave
[2],
683 for (elem
= 0; elem
< nelem
; elem
++)
684 loadavg
[elem
] = (double) load_ave
[elem
] / (double) scale
;
688 # endif /* __NetBSD__ */
690 # if !defined (LDAV_DONE) && defined (NeXT)
692 /* The NeXT code was adapted from iscreen 3.2. */
695 struct processor_set_basic_info info
;
698 /* We only know how to get the 1-minute average for this system,
699 so even if the caller asks for more than 1, we only return 1. */
701 if (!getloadavg_initialized
)
703 if (processor_set_default (host_self (), &default_set
) == KERN_SUCCESS
)
704 getloadavg_initialized
= 1;
707 if (getloadavg_initialized
)
709 info_count
= PROCESSOR_SET_BASIC_INFO_COUNT
;
710 if (processor_set_info (default_set
, PROCESSOR_SET_BASIC_INFO
, &host
,
711 (processor_set_info_t
) &info
, &info_count
)
713 getloadavg_initialized
= 0;
717 loadavg
[elem
++] = (double) info
.load_average
/ LOAD_SCALE
;
721 if (!getloadavg_initialized
)
725 # if !defined (LDAV_DONE) && defined (UMAX)
727 /* UMAX 4.2, which runs on the Encore Multimax multiprocessor, does not
728 have a /dev/kmem. Information about the workings of the running kernel
729 can be gathered with inq_stats system calls.
730 We only know how to get the 1-minute average for this system. */
732 struct proc_summary proc_sum_data
;
733 struct stat_descr proc_info
;
735 register unsigned int i
, j
;
739 register unsigned int c
, i
;
740 struct cpu_config conf
;
741 struct stat_descr desc
;
744 desc
.sd_subsys
= SUBSYS_CPU
;
745 desc
.sd_type
= CPUTYPE_CONFIG
;
746 desc
.sd_addr
= (char *) &conf
;
747 desc
.sd_size
= sizeof conf
;
749 if (inq_stats (1, &desc
))
753 for (i
= 0; i
< conf
.config_maxclass
; ++i
)
755 struct class_stats stats
;
756 bzero ((char *) &stats
, sizeof stats
);
758 desc
.sd_type
= CPUTYPE_CLASS
;
760 desc
.sd_addr
= (char *) &stats
;
761 desc
.sd_size
= sizeof stats
;
763 if (inq_stats (1, &desc
))
766 c
+= stats
.class_numcpus
;
769 samples
= cpus
< 2 ? 3 : (2 * cpus
/ 3);
772 proc_info
.sd_next
= 0;
773 proc_info
.sd_subsys
= SUBSYS_PROC
;
774 proc_info
.sd_type
= PROCTYPE_SUMMARY
;
775 proc_info
.sd_addr
= (char *) &proc_sum_data
;
776 proc_info
.sd_size
= sizeof (struct proc_summary
);
777 proc_info
.sd_sizeused
= 0;
779 if (inq_stats (1, &proc_info
) != 0)
782 load
= proc_sum_data
.ps_nrunnable
;
784 for (i
= samples
- 1; i
> 0; --i
)
786 load
+= proc_sum_data
.ps_nrun
[j
];
787 if (j
++ == PS_NRUNSIZE
)
792 loadavg
[elem
++] = load
/ samples
/ cpus
;
795 # if !defined (LDAV_DONE) && defined (DGUX)
797 /* This call can return -1 for an error, but with good args
798 it's not supposed to fail. The first argument is for no
799 apparent reason of type `long int *'. */
800 dg_sys_info ((long int *) &load_info
,
801 DG_SYS_INFO_LOAD_INFO_TYPE
,
802 DG_SYS_INFO_LOAD_VERSION_0
);
805 loadavg
[elem
++] = load_info
.one_minute
;
807 loadavg
[elem
++] = load_info
.five_minute
;
809 loadavg
[elem
++] = load_info
.fifteen_minute
;
812 # if !defined (LDAV_DONE) && defined (apollo)
814 /* Apollo code from lisch@mentorg.com (Ray Lischner).
816 This system call is not documented. The load average is obtained as
817 three long integers, for the load average over the past minute,
818 five minutes, and fifteen minutes. Each value is a scaled integer,
819 with 16 bits of integer part and 16 bits of fraction part.
821 I'm not sure which operating system first supported this system call,
822 but I know that SR10.2 supports it. */
824 extern void proc1_$
get_loadav ();
825 unsigned long load_ave
[3];
827 proc1_$
get_loadav (load_ave
);
830 loadavg
[elem
++] = load_ave
[0] / 65536.0;
832 loadavg
[elem
++] = load_ave
[1] / 65536.0;
834 loadavg
[elem
++] = load_ave
[2] / 65536.0;
837 # if !defined (LDAV_DONE) && defined (OSF_MIPS)
840 struct tbl_loadavg load_ave
;
841 table (TBL_LOADAVG
, 0, &load_ave
, 1, sizeof (load_ave
));
843 = (load_ave
.tl_lscale
== 0
844 ? load_ave
.tl_avenrun
.d
[0]
845 : (load_ave
.tl_avenrun
.l
[0] / (double) load_ave
.tl_lscale
));
846 # endif /* OSF_MIPS */
848 # if !defined (LDAV_DONE) && (defined (__MSDOS__) || defined (WINDOWS32))
851 /* A faithful emulation is going to have to be saved for a rainy day. */
852 for ( ; elem
< nelem
; elem
++)
856 # endif /* __MSDOS__ || WINDOWS32 */
858 # if !defined (LDAV_DONE) && defined (OSF_ALPHA)
861 struct tbl_loadavg load_ave
;
862 table (TBL_LOADAVG
, 0, &load_ave
, 1, sizeof (load_ave
));
863 for (elem
= 0; elem
< nelem
; elem
++)
865 = (load_ave
.tl_lscale
== 0
866 ? load_ave
.tl_avenrun
.d
[elem
]
867 : (load_ave
.tl_avenrun
.l
[elem
] / (double) load_ave
.tl_lscale
));
868 # endif /* OSF_ALPHA */
870 # if !defined (LDAV_DONE) && defined (VMS)
871 /* VMS specific code -- read from the Load Ave driver. */
873 LOAD_AVE_TYPE load_ave
[3];
874 static int getloadavg_initialized
= 0;
883 /* Ensure that there is a channel open to the load ave device. */
884 if (!getloadavg_initialized
)
886 /* Attempt to open the channel. */
888 descriptor
.dsc$w_length
= 18;
889 descriptor
.dsc$a_pointer
= "$$VMS_LOAD_AVERAGE";
891 $
DESCRIPTOR (descriptor
, "LAV0:");
893 if (sys$
assign (&descriptor
, &channel
, 0, 0) & 1)
894 getloadavg_initialized
= 1;
897 /* Read the load average vector. */
898 if (getloadavg_initialized
899 && !(sys$
qiow (0, channel
, IO$_READVBLK
, 0, 0, 0,
900 load_ave
, 12, 0, 0, 0, 0) & 1))
902 sys$
dassgn (channel
);
903 getloadavg_initialized
= 0;
906 if (!getloadavg_initialized
)
910 # if !defined (LDAV_DONE) && defined(LOAD_AVE_TYPE) && !defined(VMS)
912 /* UNIX-specific code -- read the average from /dev/kmem. */
914 # define LDAV_PRIVILEGED /* This code requires special installation. */
916 LOAD_AVE_TYPE load_ave
[3];
918 /* Get the address of LDAV_SYMBOL. */
922 # ifndef NLIST_STRUCT
923 strcpy (nl
[0].n_name
, LDAV_SYMBOL
);
924 strcpy (nl
[1].n_name
, "");
925 # else /* NLIST_STRUCT */
926 # ifdef NLIST_NAME_UNION
927 nl
[0].n_un
.n_name
= LDAV_SYMBOL
;
928 nl
[1].n_un
.n_name
= 0;
929 # else /* not NLIST_NAME_UNION */
930 nl
[0].n_name
= LDAV_SYMBOL
;
932 # endif /* not NLIST_NAME_UNION */
933 # endif /* NLIST_STRUCT */
937 # if !(defined (_AIX) && !defined (ps2))
938 nlist (KERNEL_FILE
, nl
)
940 knlist (nl
, 1, sizeof (nl
[0]))
943 /* Omit "&& nl[0].n_type != 0 " -- it breaks on Sun386i. */
945 # ifdef FIXUP_KERNEL_SYMBOL_ADDR
946 FIXUP_KERNEL_SYMBOL_ADDR (nl
);
948 offset
= nl
[0].n_value
;
950 # endif /* !SUNOS_5 */
954 ldav_off
= sysmp (MP_KERNADDR
, MPKA_AVENRUN
);
956 offset
= (long) ldav_off
& 0x7fffffff;
960 /* Make sure we have /dev/kmem open. */
961 if (!getloadavg_initialized
)
964 channel
= open ("/dev/kmem", 0);
967 /* Set the channel to close on exec, so it does not
968 litter any child's descriptor table. */
971 # define FD_CLOEXEC 1
973 (void) fcntl (channel
, F_SETFD
, FD_CLOEXEC
);
975 getloadavg_initialized
= 1;
978 /* We pass 0 for the kernel, corefile, and swapfile names
979 to use the currently running kernel. */
980 kd
= kvm_open (0, 0, 0, O_RDONLY
, 0);
983 /* nlist the currently running kernel. */
985 offset
= nl
[0].n_value
;
986 getloadavg_initialized
= 1;
988 # endif /* SUNOS_5 */
991 /* If we can, get the load average values. */
992 if (offset
&& getloadavg_initialized
)
994 /* Try to read the load. */
996 if (lseek (channel
, offset
, 0) == -1L
997 || read (channel
, (char *) load_ave
, sizeof (load_ave
))
998 != sizeof (load_ave
))
1001 getloadavg_initialized
= 0;
1003 # else /* SUNOS_5 */
1004 if (kvm_read (kd
, offset
, (char *) load_ave
, sizeof (load_ave
))
1005 != sizeof (load_ave
))
1008 getloadavg_initialized
= 0;
1010 # endif /* SUNOS_5 */
1013 if (offset
== 0 || !getloadavg_initialized
)
1015 # endif /* LOAD_AVE_TYPE and not VMS */
1017 # if !defined (LDAV_DONE) && defined (LOAD_AVE_TYPE) /* Including VMS. */
1019 loadavg
[elem
++] = LDAV_CVT (load_ave
[0]);
1021 loadavg
[elem
++] = LDAV_CVT (load_ave
[1]);
1023 loadavg
[elem
++] = LDAV_CVT (load_ave
[2]);
1026 # endif /* !LDAV_DONE && LOAD_AVE_TYPE */
1031 /* Set errno to zero to indicate that there was no particular error;
1032 this function just can't work at all on this system. */
1038 #endif /* ! HAVE_GETLOADAVG */
1049 naptime
= atoi (argv
[1]);
1056 errno
= 0; /* Don't be misled if it doesn't set errno. */
1057 loads
= getloadavg (avg
, 3);
1060 perror ("Error getting load average");
1064 printf ("1-minute: %f ", avg
[0]);
1066 printf ("5-minute: %f ", avg
[1]);
1068 printf ("15-minute: %f ", avg
[2]);