annotate src/getloadavg.c @ 99492:ee792794d888

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