1 /* Get the system load averages.
3 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1991, 1992, 1993, 1994,
4 1995, 1997, 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
5 Software Foundation, Inc.
7 NOTE: The canonical source of this file is maintained with gnulib.
8 Bugs can be reported to bug-gnulib@gnu.org.
10 This program is free software: you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
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 HAVE_LIBPERFSTAT Define this if your system has the
34 perfstat_cpu_total function in libperfstat (AIX).
35 FIXUP_KERNEL_SYMBOL_ADDR() Adjust address in returned struct nlist.
36 KERNEL_FILE Name of the kernel file to nlist.
37 LDAV_CVT() Scale the load average from the kernel.
39 LDAV_SYMBOL Name of kernel symbol giving load average.
40 LOAD_AVE_TYPE Type of the load average array in the kernel.
41 Must be defined unless one of
42 apollo, DGUX, NeXT, or UMAX is defined;
44 otherwise, no load average is available.
45 HAVE_NLIST_H nlist.h is available. NLIST_STRUCT defaults
47 NLIST_STRUCT Include nlist.h, not a.out.h, and
48 the nlist n_name element is a pointer,
50 HAVE_STRUCT_NLIST_N_UN_N_NAME `n_un.n_name' is member of `struct nlist'.
51 LINUX_LDAV_FILE [__linux__, __CYGWIN__]: File containing
54 Specific system predefines this file uses, aside from setting
55 default values if not emacs:
58 BSD Real BSD, not just BSD-like.
61 eunice UNIX emulator under VMS.
63 __MSDOS__ No-op for MSDOS.
66 sequent Sequent Dynix 3.x.x (BSD)
67 _SEQUENT_ Sequent DYNIX/ptx 1.x.x (SYSV)
68 sony_news NEWS-OS (works at least for 4.1C)
72 WINDOWS32 No-op for Windows95/NT.
73 __linux__ Linux: assumes /proc file system mounted.
74 Support from Michael K. Johnson.
75 __CYGWIN__ Cygwin emulates linux /proc/loadavg.
76 __NetBSD__ NetBSD: assumes /kern file system mounted.
78 In addition, to avoid nesting many #ifdefs, we internally set
79 LDAV_DONE to indicate that the load average has been computed.
81 We also #define LDAV_PRIVILEGED if a program will require
82 special installation to be able to call getloadavg. */
84 /* "configure" defines CONFIGURING_GETLOADAVG to sidestep problems
85 with partially-configured source directories. */
87 #ifndef CONFIGURING_GETLOADAVG
98 /* Exclude all the code except the test program at the end
99 if the system has its own `getloadavg' function. */
101 #ifndef HAVE_GETLOADAVG
103 # include <sys/types.h>
105 /* Both the Emacs and non-Emacs sections want this. Some
106 configuration files' definitions for the LOAD_AVE_CVT macro (like
107 sparc.h's) use macros like FSCALE, defined here. */
108 # if defined (unix) || defined (__unix)
109 # include <sys/param.h>
112 # include "c-strtod.h"
113 # include "cloexec.h"
114 # include "intprops.h"
117 /* The existing Emacs configuration files define a macro called
118 LOAD_AVE_CVT, which accepts a value of type LOAD_AVE_TYPE, and
119 returns the load average multiplied by 100. What we actually want
120 is a macro called LDAV_CVT, which returns the load average as an
123 For backwards compatibility, we'll define LDAV_CVT in terms of
124 LOAD_AVE_CVT, but future machine config files should just define
125 LDAV_CVT directly. */
127 # if !defined (LDAV_CVT) && defined (LOAD_AVE_CVT)
128 # define LDAV_CVT(n) (LOAD_AVE_CVT (n) / 100.0)
131 # if !defined (BSD) && defined (ultrix)
132 /* Ultrix behaves like BSD on Vaxen. */
137 /* NeXT in the 2.{0,1,2} releases defines BSD in <sys/param.h>, which
138 conflicts with the definition understood in this file, that this
142 /* NeXT defines FSCALE in <sys/param.h>. However, we take FSCALE being
143 defined to mean that the nlist method should be used, which is not true. */
147 /* Same issues as for NeXT apply to the HURD-based GNU system. */
151 # endif /* __GNU__ */
153 /* Set values that are different from the defaults, which are
154 set a little farther down with #ifndef. */
157 /* Some shorthands. */
159 # if defined (HPUX) && !defined (hpux)
163 # if defined (__hpux) && !defined (hpux)
167 # if defined (__sun) && !defined (sun)
171 # if defined (hp300) && !defined (hpux)
175 # if defined (ultrix) && defined (mips)
179 # if defined (__SVR4) && !defined (SVR4)
183 # if (defined (sun) && defined (SVR4)) || defined (SOLARIS2)
187 # if defined (__osf__) && (defined (__alpha) || defined (__alpha__))
189 # include <sys/mbuf.h>
190 # include <sys/socket.h>
191 # include <net/route.h>
192 # include <sys/table.h>
193 /* Tru64 4.0D's table.h redefines sys */
197 # if defined (__osf__) && (defined (mips) || defined (__mips__))
199 # include <sys/table.h>
202 /* UTek's /bin/cc on the 4300 has no architecture specific cpp define by
203 default, but _MACH_IND_SYS_TYPES is defined in <sys/types.h>. Combine
204 that with a couple of other things and we'll have a unique match. */
205 # if !defined (tek4300) && defined (unix) && defined (m68k) && defined (mc68000) && defined (mc68020) && defined (_MACH_IND_SYS_TYPES)
206 # define tek4300 /* Define by emacs, but not by other users. */
210 /* VAX C can't handle multi-line #ifs, or lines longer than 256 chars. */
211 # ifndef LOAD_AVE_TYPE
214 # define LOAD_AVE_TYPE long
218 # define LOAD_AVE_TYPE long
222 # define LOAD_AVE_TYPE long
226 # define LOAD_AVE_TYPE long
230 # define LOAD_AVE_TYPE long
234 # define LOAD_AVE_TYPE long
238 # define LOAD_AVE_TYPE long
242 # define LOAD_AVE_TYPE long
246 # define LOAD_AVE_TYPE long
249 # if defined (ardent) && defined (titan)
250 # define LOAD_AVE_TYPE long
254 # define LOAD_AVE_TYPE long
257 # if defined (alliant) && defined (i860) /* Alliant FX/2800 */
258 # define LOAD_AVE_TYPE long
261 # if defined _AIX && ! defined HAVE_LIBPERFSTAT
262 # define LOAD_AVE_TYPE long
266 # define LOAD_AVE_TYPE double
268 # define LDAV_CVT(n) (n)
272 # endif /* No LOAD_AVE_TYPE. */
275 /* <sys/param.h> defines an incorrect value for FSCALE on Alpha OSF/1,
276 according to ghazi@noc.rutgers.edu. */
278 # define FSCALE 1024.0
281 # if defined (alliant) && defined (i860) /* Alliant FX/2800 */
282 /* <sys/param.h> defines an incorrect value for FSCALE on an
283 Alliant FX/2800 Concentrix 2.2, according to ghazi@noc.rutgers.edu. */
285 # define FSCALE 100.0
291 /* SunOS and some others define FSCALE in sys/param.h. */
294 # define FSCALE 2048.0
297 # if defined (MIPS) || defined (SVR4) || defined (decstation)
301 # if defined (sgi) || defined (sequent)
302 /* Sometimes both MIPS and sgi are defined, so FSCALE was just defined
303 above under #ifdef MIPS. But we want the sgi value. */
305 # define FSCALE 1000.0
308 # if defined (ardent) && defined (titan)
309 # define FSCALE 65536.0
313 # define FSCALE 100.0
316 # if defined _AIX && !defined HAVE_LIBPERFSTAT
317 # define FSCALE 65536.0
320 # endif /* Not FSCALE. */
322 # if !defined (LDAV_CVT) && defined (FSCALE)
323 # define LDAV_CVT(n) (((double) (n)) / FSCALE)
326 # ifndef NLIST_STRUCT
328 # define NLIST_STRUCT
332 # if defined (sgi) || (defined (mips) && !defined (BSD))
333 # define FIXUP_KERNEL_SYMBOL_ADDR(nl) ((nl)[0].n_value &= ~(1 << 31))
337 # if !defined (KERNEL_FILE) && defined (sequent)
338 # define KERNEL_FILE "/dynix"
341 # if !defined (KERNEL_FILE) && defined (hpux)
342 # define KERNEL_FILE "/hp-ux"
345 # if !defined (KERNEL_FILE) && (defined (_SEQUENT_) || defined (MIPS) || defined (SVR4) || defined (ISC) || defined (sgi) || (defined (ardent) && defined (titan)))
346 # define KERNEL_FILE "/unix"
350 # if !defined (LDAV_SYMBOL) && defined (alliant)
351 # define LDAV_SYMBOL "_Loadavg"
354 # 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)))
355 # define LDAV_SYMBOL "avenrun"
360 /* LOAD_AVE_TYPE should only get defined if we're going to use the
362 # if !defined (LOAD_AVE_TYPE) && (defined (BSD) || defined (LDAV_CVT) || defined (KERNEL_FILE) || defined (LDAV_SYMBOL))
363 # define LOAD_AVE_TYPE double
366 # ifdef LOAD_AVE_TYPE
370 # ifndef NLIST_STRUCT
372 # else /* NLIST_STRUCT */
374 # endif /* NLIST_STRUCT */
382 # if defined (hpux) && defined (HAVE_PSTAT_GETDYNAMIC)
383 # include <sys/pstat.h>
387 # define KERNEL_FILE "/vmunix"
388 # endif /* KERNEL_FILE */
391 # define LDAV_SYMBOL "_avenrun"
392 # endif /* LDAV_SYMBOL */
393 # endif /* __linux__ */
399 # include <descrip.h>
401 # include <vms/iodef.h>
406 # define LDAV_CVT(n) ((double) (n))
407 # endif /* !LDAV_CVT */
409 # endif /* LOAD_AVE_TYPE */
411 # if defined HAVE_LIBPERFSTAT
412 # include <sys/protosw.h>
413 # include <libperfstat.h>
414 # include <sys/proc.h>
420 # if defined (__GNU__) && !defined (NeXT)
421 /* Note that NeXT Openstep defines __GNU__ even though it should not. */
422 /* GNU system acts much like NeXT, for load average purposes,
425 # define host_self mach_host_self
429 # ifdef HAVE_MACH_MACH_H
430 # include <mach/mach.h>
437 # include <sys/sysmp.h>
442 # include <sys/time.h>
443 # include <sys/wait.h>
444 # include <sys/syscall.h>
447 # include <machine/cpu.h>
448 # include <inq_stats/statistics.h>
449 # include <inq_stats/sysstats.h>
450 # include <inq_stats/cpustats.h>
451 # include <inq_stats/procstats.h>
452 # else /* Not UMAX_43. */
453 # include <sys/sysdefs.h>
454 # include <sys/statistics.h>
455 # include <sys/sysstats.h>
456 # include <sys/cpudefs.h>
457 # include <sys/cpustats.h>
458 # include <sys/procstats.h>
459 # endif /* Not UMAX_43. */
463 # include <sys/dg_sys_info.h>
466 # include "fcntl--.h"
468 /* Avoid static vars inside a function since in HPUX they dump as pure. */
471 static processor_set_t default_set
;
472 static bool getloadavg_initialized
;
476 static unsigned int cpus
= 0;
477 static unsigned int samples
;
481 static struct dg_sys_info_load_info load_info
; /* what-a-mouthful! */
484 # if !defined (HAVE_LIBKSTAT) && defined (LOAD_AVE_TYPE)
485 /* File descriptor open to /dev/kmem or VMS load ave driver. */
487 /* True iff channel is valid. */
488 static bool getloadavg_initialized
;
489 /* Offset in kmem to seek to read load average, or 0 means invalid. */
492 # if ! defined __VMS && ! defined sgi && ! defined __linux__
493 static struct nlist nl
[2];
498 # endif /* SUNOS_5 */
500 # endif /* LOAD_AVE_TYPE && !HAVE_LIBKSTAT */
502 /* Put the 1 minute, 5 minute and 15 minute load averages
503 into the first NELEM elements of LOADAVG.
504 Return the number written (never more than 3, but may be less than NELEM),
505 or -1 if an error occurred. */
508 getloadavg (double loadavg
[], int nelem
)
510 int elem
= 0; /* Return value. */
512 # ifdef NO_GET_LOAD_AVG
514 /* Set errno to zero to indicate that there was no particular error;
515 this function just can't work at all on this system. */
520 # if !defined (LDAV_DONE) && defined (HAVE_LIBKSTAT)
521 /* Use libkstat because we don't have to be root. */
530 ksp
= kstat_lookup (kc
, "unix", 0, "system_misc");
533 if (kstat_read (kc
, ksp
, 0) == -1)
537 kn
= kstat_data_lookup (ksp
, "avenrun_1min");
540 /* Return -1 if no load average information is available. */
546 loadavg
[elem
++] = (double) kn
->value
.ul
/ FSCALE
;
550 kn
= kstat_data_lookup (ksp
, "avenrun_5min");
553 loadavg
[elem
++] = (double) kn
->value
.ul
/ FSCALE
;
557 kn
= kstat_data_lookup (ksp
, "avenrun_15min");
559 loadavg
[elem
++] = (double) kn
->value
.ul
/ FSCALE
;
565 # endif /* HAVE_LIBKSTAT */
567 # if !defined (LDAV_DONE) && defined (hpux) && defined (HAVE_PSTAT_GETDYNAMIC)
568 /* Use pstat_getdynamic() because we don't have to be root. */
570 # undef LOAD_AVE_TYPE
572 struct pst_dynamic dyn_info
;
573 if (pstat_getdynamic (&dyn_info
, sizeof (dyn_info
), 0, 0) < 0)
576 loadavg
[elem
++] = dyn_info
.psd_avg_1_min
;
578 loadavg
[elem
++] = dyn_info
.psd_avg_5_min
;
580 loadavg
[elem
++] = dyn_info
.psd_avg_15_min
;
582 # endif /* hpux && HAVE_PSTAT_GETDYNAMIC */
584 # if ! defined LDAV_DONE && defined HAVE_LIBPERFSTAT
586 # undef LOAD_AVE_TYPE
587 /* Use perfstat_cpu_total because we don't have to be root. */
589 perfstat_cpu_total_t cpu_stats
;
590 int result
= perfstat_cpu_total (NULL
, &cpu_stats
, sizeof cpu_stats
, 1);
593 loadavg
[0] = cpu_stats
.loadavg
[0] / (double)(1 << SBITS
);
594 loadavg
[1] = cpu_stats
.loadavg
[1] / (double)(1 << SBITS
);
595 loadavg
[2] = cpu_stats
.loadavg
[2] / (double)(1 << SBITS
);
600 # if !defined (LDAV_DONE) && (defined (__linux__) || defined (__CYGWIN__))
602 # undef LOAD_AVE_TYPE
604 # ifndef LINUX_LDAV_FILE
605 # define LINUX_LDAV_FILE "/proc/loadavg"
608 char ldavgbuf
[3 * (INT_STRLEN_BOUND (int) + sizeof ".00 ")];
609 char const *ptr
= ldavgbuf
;
612 fd
= open (LINUX_LDAV_FILE
, O_RDONLY
);
615 count
= read (fd
, ldavgbuf
, sizeof ldavgbuf
- 1);
619 ldavgbuf
[count
] = '\0';
621 for (elem
= 0; elem
< nelem
; elem
++)
627 d
= c_strtod (ptr
, &endptr
);
628 if (ptr
== endptr
|| (d
== 0 && errno
!= 0))
640 # endif /* __linux__ || __CYGWIN__ */
642 # if !defined (LDAV_DONE) && defined (__NetBSD__)
644 # undef LOAD_AVE_TYPE
646 # ifndef NETBSD_LDAV_FILE
647 # define NETBSD_LDAV_FILE "/kern/loadavg"
650 unsigned long int load_ave
[3], scale
;
654 fp
= fopen (NETBSD_LDAV_FILE
, "r");
657 count
= fscanf (fp
, "%lu %lu %lu %lu\n",
658 &load_ave
[0], &load_ave
[1], &load_ave
[2],
664 for (elem
= 0; elem
< nelem
; elem
++)
665 loadavg
[elem
] = (double) load_ave
[elem
] / (double) scale
;
669 # endif /* __NetBSD__ */
671 # if !defined (LDAV_DONE) && defined (NeXT)
673 /* The NeXT code was adapted from iscreen 3.2. */
676 struct processor_set_basic_info info
;
677 unsigned int info_count
;
679 /* We only know how to get the 1-minute average for this system,
680 so even if the caller asks for more than 1, we only return 1. */
682 if (!getloadavg_initialized
)
684 if (processor_set_default (host_self (), &default_set
) == KERN_SUCCESS
)
685 getloadavg_initialized
= true;
688 if (getloadavg_initialized
)
690 info_count
= PROCESSOR_SET_BASIC_INFO_COUNT
;
691 if (processor_set_info (default_set
, PROCESSOR_SET_BASIC_INFO
, &host
,
692 (processor_set_info_t
) &info
, &info_count
)
694 getloadavg_initialized
= false;
698 loadavg
[elem
++] = (double) info
.load_average
/ LOAD_SCALE
;
702 if (!getloadavg_initialized
)
706 # if !defined (LDAV_DONE) && defined (UMAX)
708 /* UMAX 4.2, which runs on the Encore Multimax multiprocessor, does not
709 have a /dev/kmem. Information about the workings of the running kernel
710 can be gathered with inq_stats system calls.
711 We only know how to get the 1-minute average for this system. */
713 struct proc_summary proc_sum_data
;
714 struct stat_descr proc_info
;
716 register unsigned int i
, j
;
720 register unsigned int c
, i
;
721 struct cpu_config conf
;
722 struct stat_descr desc
;
725 desc
.sd_subsys
= SUBSYS_CPU
;
726 desc
.sd_type
= CPUTYPE_CONFIG
;
727 desc
.sd_addr
= (char *) &conf
;
728 desc
.sd_size
= sizeof conf
;
730 if (inq_stats (1, &desc
))
734 for (i
= 0; i
< conf
.config_maxclass
; ++i
)
736 struct class_stats stats
;
737 bzero ((char *) &stats
, sizeof stats
);
739 desc
.sd_type
= CPUTYPE_CLASS
;
741 desc
.sd_addr
= (char *) &stats
;
742 desc
.sd_size
= sizeof stats
;
744 if (inq_stats (1, &desc
))
747 c
+= stats
.class_numcpus
;
750 samples
= cpus
< 2 ? 3 : (2 * cpus
/ 3);
753 proc_info
.sd_next
= 0;
754 proc_info
.sd_subsys
= SUBSYS_PROC
;
755 proc_info
.sd_type
= PROCTYPE_SUMMARY
;
756 proc_info
.sd_addr
= (char *) &proc_sum_data
;
757 proc_info
.sd_size
= sizeof (struct proc_summary
);
758 proc_info
.sd_sizeused
= 0;
760 if (inq_stats (1, &proc_info
) != 0)
763 load
= proc_sum_data
.ps_nrunnable
;
765 for (i
= samples
- 1; i
> 0; --i
)
767 load
+= proc_sum_data
.ps_nrun
[j
];
768 if (j
++ == PS_NRUNSIZE
)
773 loadavg
[elem
++] = load
/ samples
/ cpus
;
776 # if !defined (LDAV_DONE) && defined (DGUX)
778 /* This call can return -1 for an error, but with good args
779 it's not supposed to fail. The first argument is for no
780 apparent reason of type `long int *'. */
781 dg_sys_info ((long int *) &load_info
,
782 DG_SYS_INFO_LOAD_INFO_TYPE
,
783 DG_SYS_INFO_LOAD_VERSION_0
);
786 loadavg
[elem
++] = load_info
.one_minute
;
788 loadavg
[elem
++] = load_info
.five_minute
;
790 loadavg
[elem
++] = load_info
.fifteen_minute
;
793 # if !defined (LDAV_DONE) && defined (apollo)
795 /* Apollo code from lisch@mentorg.com (Ray Lischner).
797 This system call is not documented. The load average is obtained as
798 three long integers, for the load average over the past minute,
799 five minutes, and fifteen minutes. Each value is a scaled integer,
800 with 16 bits of integer part and 16 bits of fraction part.
802 I'm not sure which operating system first supported this system call,
803 but I know that SR10.2 supports it. */
805 extern void proc1_$
get_loadav ();
806 unsigned long load_ave
[3];
808 proc1_$
get_loadav (load_ave
);
811 loadavg
[elem
++] = load_ave
[0] / 65536.0;
813 loadavg
[elem
++] = load_ave
[1] / 65536.0;
815 loadavg
[elem
++] = load_ave
[2] / 65536.0;
818 # if !defined (LDAV_DONE) && defined (OSF_MIPS)
821 struct tbl_loadavg load_ave
;
822 table (TBL_LOADAVG
, 0, &load_ave
, 1, sizeof (load_ave
));
824 = (load_ave
.tl_lscale
== 0
825 ? load_ave
.tl_avenrun
.d
[0]
826 : (load_ave
.tl_avenrun
.l
[0] / (double) load_ave
.tl_lscale
));
827 # endif /* OSF_MIPS */
829 # if !defined (LDAV_DONE) && (defined (__MSDOS__) || defined (WINDOWS32))
832 /* A faithful emulation is going to have to be saved for a rainy day. */
833 for ( ; elem
< nelem
; elem
++)
837 # endif /* __MSDOS__ || WINDOWS32 */
839 # if !defined (LDAV_DONE) && defined (OSF_ALPHA)
842 struct tbl_loadavg load_ave
;
843 table (TBL_LOADAVG
, 0, &load_ave
, 1, sizeof (load_ave
));
844 for (elem
= 0; elem
< nelem
; elem
++)
846 = (load_ave
.tl_lscale
== 0
847 ? load_ave
.tl_avenrun
.d
[elem
]
848 : (load_ave
.tl_avenrun
.l
[elem
] / (double) load_ave
.tl_lscale
));
849 # endif /* OSF_ALPHA */
851 # if ! defined LDAV_DONE && defined __VMS
852 /* VMS specific code -- read from the Load Ave driver. */
854 LOAD_AVE_TYPE load_ave
[3];
855 static bool getloadavg_initialized
;
864 /* Ensure that there is a channel open to the load ave device. */
865 if (!getloadavg_initialized
)
867 /* Attempt to open the channel. */
869 descriptor
.dsc$w_length
= 18;
870 descriptor
.dsc$a_pointer
= "$$VMS_LOAD_AVERAGE";
872 $
DESCRIPTOR (descriptor
, "LAV0:");
874 if (sys$
assign (&descriptor
, &channel
, 0, 0) & 1)
875 getloadavg_initialized
= true;
878 /* Read the load average vector. */
879 if (getloadavg_initialized
880 && !(sys$
qiow (0, channel
, IO$_READVBLK
, 0, 0, 0,
881 load_ave
, 12, 0, 0, 0, 0) & 1))
883 sys$
dassgn (channel
);
884 getloadavg_initialized
= false;
887 if (!getloadavg_initialized
)
889 # endif /* ! defined LDAV_DONE && defined __VMS */
891 # if ! defined LDAV_DONE && defined LOAD_AVE_TYPE && ! defined __VMS
893 /* UNIX-specific code -- read the average from /dev/kmem. */
895 # define LDAV_PRIVILEGED /* This code requires special installation. */
897 LOAD_AVE_TYPE load_ave
[3];
899 /* Get the address of LDAV_SYMBOL. */
903 # ifndef NLIST_STRUCT
904 strcpy (nl
[0].n_name
, LDAV_SYMBOL
);
905 strcpy (nl
[1].n_name
, "");
906 # else /* NLIST_STRUCT */
907 # ifdef HAVE_STRUCT_NLIST_N_UN_N_NAME
908 nl
[0].n_un
.n_name
= LDAV_SYMBOL
;
909 nl
[1].n_un
.n_name
= 0;
910 # else /* not HAVE_STRUCT_NLIST_N_UN_N_NAME */
911 nl
[0].n_name
= LDAV_SYMBOL
;
913 # endif /* not HAVE_STRUCT_NLIST_N_UN_N_NAME */
914 # endif /* NLIST_STRUCT */
918 # if !(defined (_AIX) && !defined (ps2))
919 nlist (KERNEL_FILE
, nl
)
921 knlist (nl
, 1, sizeof (nl
[0]))
924 /* Omit "&& nl[0].n_type != 0 " -- it breaks on Sun386i. */
926 # ifdef FIXUP_KERNEL_SYMBOL_ADDR
927 FIXUP_KERNEL_SYMBOL_ADDR (nl
);
929 offset
= nl
[0].n_value
;
931 # endif /* !SUNOS_5 */
935 ldav_off
= sysmp (MP_KERNADDR
, MPKA_AVENRUN
);
937 offset
= (long int) ldav_off
& 0x7fffffff;
941 /* Make sure we have /dev/kmem open. */
942 if (!getloadavg_initialized
)
945 channel
= open ("/dev/kmem", O_RDONLY
);
948 /* Set the channel to close on exec, so it does not
949 litter any child's descriptor table. */
950 set_cloexec_flag (channel
, true);
951 getloadavg_initialized
= true;
954 /* We pass 0 for the kernel, corefile, and swapfile names
955 to use the currently running kernel. */
956 kd
= kvm_open (0, 0, 0, O_RDONLY
, 0);
959 /* nlist the currently running kernel. */
961 offset
= nl
[0].n_value
;
962 getloadavg_initialized
= true;
964 # endif /* SUNOS_5 */
967 /* If we can, get the load average values. */
968 if (offset
&& getloadavg_initialized
)
970 /* Try to read the load. */
972 if (lseek (channel
, offset
, 0) == -1L
973 || read (channel
, (char *) load_ave
, sizeof (load_ave
))
974 != sizeof (load_ave
))
977 getloadavg_initialized
= false;
980 if (kvm_read (kd
, offset
, (char *) load_ave
, sizeof (load_ave
))
981 != sizeof (load_ave
))
984 getloadavg_initialized
= false;
986 # endif /* SUNOS_5 */
989 if (offset
== 0 || !getloadavg_initialized
)
991 # endif /* ! defined LDAV_DONE && defined LOAD_AVE_TYPE && ! defined __VMS */
993 # if !defined (LDAV_DONE) && defined (LOAD_AVE_TYPE) /* Including VMS. */
995 loadavg
[elem
++] = LDAV_CVT (load_ave
[0]);
997 loadavg
[elem
++] = LDAV_CVT (load_ave
[1]);
999 loadavg
[elem
++] = LDAV_CVT (load_ave
[2]);
1002 # endif /* !LDAV_DONE && LOAD_AVE_TYPE */
1004 # if !defined LDAV_DONE
1005 /* Set errno to zero to indicate that there was no particular error;
1006 this function just can't work at all on this system. */
1013 #endif /* ! HAVE_GETLOADAVG */
1017 main (int argc
, char **argv
)
1022 naptime
= atoi (argv
[1]);
1029 errno
= 0; /* Don't be misled if it doesn't set errno. */
1030 loads
= getloadavg (avg
, 3);
1033 perror ("Error getting load average");
1034 return EXIT_FAILURE
;
1037 printf ("1-minute: %f ", avg
[0]);
1039 printf ("5-minute: %f ", avg
[1]);
1041 printf ("15-minute: %f ", avg
[2]);
1050 return EXIT_SUCCESS
;