annotate src/getloadavg.c @ 112317:7df2e30d72ec

Include <unistd.h> unilaterally.
author Paul Eggert <eggert@cs.ucla.edu>
date Sun, 09 Jan 2011 00:12:35 -0800
parents 750db9f3e6d8
children 56d3e9c28eb0
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,
100960
69177b934405 Revert copyright year changes for files that are not part of Emacs.
Glenn Morris <rgm@gnu.org>
parents: 100951
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
112317
7df2e30d72ec Include <unistd.h> unilaterally.
Paul Eggert <eggert@cs.ucla.edu>
parents: 109165
diff changeset
358 # include <unistd.h>
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
359 # include <stdio.h>
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
360
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
361 /* 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
362 nlist method. */
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
363 # 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
364 # 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
365 # endif
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
366
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
367 # ifdef LOAD_AVE_TYPE
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
368
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
369 # ifndef VMS
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
370 # ifndef __linux__
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
371 # ifndef NLIST_STRUCT
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
372 # include <a.out.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
373 # else /* NLIST_STRUCT */
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
374 # include <nlist.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
375 # endif /* NLIST_STRUCT */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
376
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
377 # ifdef SUNOS_5
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
378 # include <fcntl.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
379 # include <kvm.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
380 # include <kstat.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
381 # endif
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
382
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
383 # 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
384 # include <sys/pstat.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
385 # endif
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
386
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
387 # ifndef KERNEL_FILE
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
388 # define KERNEL_FILE "/vmunix"
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
389 # endif /* KERNEL_FILE */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
390
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
391 # ifndef LDAV_SYMBOL
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
392 # define LDAV_SYMBOL "_avenrun"
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
393 # endif /* LDAV_SYMBOL */
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
394 # endif /* __linux__ */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
395
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
396 # else /* VMS */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
397
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
398 # ifndef eunice
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
399 # include <iodef.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
400 # include <descrip.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
401 # else /* eunice */
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
402 # include <vms/iodef.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
403 # endif /* eunice */
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
404 # endif /* VMS */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
405
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
406 # ifndef LDAV_CVT
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
407 # 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
408 # endif /* !LDAV_CVT */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
409
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
410 # endif /* LOAD_AVE_TYPE */
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
411
18592
d7376a9dca6d [__GNU__]: Test for not NeXT.
Richard M. Stallman <rms@gnu.org>
parents: 17337
diff changeset
412 # if defined(__GNU__) && !defined (NeXT)
d7376a9dca6d [__GNU__]: Test for not NeXT.
Richard M. Stallman <rms@gnu.org>
parents: 17337
diff changeset
413 /* 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
414 /* 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
415 but not exactly. */
17064
0f4ca446767c [__GNU__] (NeXT, host_self):
Miles Bader <miles@gnu.org>
parents: 16869
diff changeset
416 # define NeXT
0f4ca446767c [__GNU__] (NeXT, host_self):
Miles Bader <miles@gnu.org>
parents: 16869
diff changeset
417 # define host_self mach_host_self
0f4ca446767c [__GNU__] (NeXT, host_self):
Miles Bader <miles@gnu.org>
parents: 16869
diff changeset
418 # endif
0f4ca446767c [__GNU__] (NeXT, host_self):
Miles Bader <miles@gnu.org>
parents: 16869
diff changeset
419
96772
ade33f1b986e revert changes to getloadavg.c
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96675
diff changeset
420 # ifdef NeXT
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
421 # 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
422 # include <mach/mach.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
423 # else
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
424 # include <mach.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
425 # endif
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
426 # endif /* NeXT */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
427
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
428 # ifdef sgi
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
429 # include <sys/sysmp.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
430 # endif /* sgi */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
431
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
432 # ifdef UMAX
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
433 # include <stdio.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
434 # include <signal.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
435 # include <sys/time.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
436 # include <sys/wait.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
437 # include <sys/syscall.h>
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
438
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
439 # ifdef UMAX_43
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
440 # include <machine/cpu.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
441 # 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
442 # 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
443 # 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
444 # 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
445 # else /* Not UMAX_43. */
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
446 # include <sys/sysdefs.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
447 # include <sys/statistics.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
448 # include <sys/sysstats.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
449 # include <sys/cpudefs.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
450 # include <sys/cpustats.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
451 # include <sys/procstats.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
452 # endif /* Not UMAX_43. */
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
453 # endif /* UMAX */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
454
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
455 # ifdef DGUX
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
456 # 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
457 # endif
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
458
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
459 # 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
460 # include <fcntl.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
461 # else
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
462 # include <sys/file.h>
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
463 # endif
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
464
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
465 /* Avoid static vars inside a function since in HPUX they dump as pure. */
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
466
96772
ade33f1b986e revert changes to getloadavg.c
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96675
diff changeset
467 # ifdef NeXT
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
468 static processor_set_t default_set;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
469 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
470 # endif /* NeXT */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
471
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
472 # ifdef UMAX
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
473 static unsigned int cpus = 0;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
474 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
475 # endif /* UMAX */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
476
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
477 # ifdef DGUX
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
478 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
479 # endif /* DGUX */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
480
22855
0af947ec28eb GNU make release 3.77.
Paul D. Smith <psmith@BayNetworks.com>
parents: 18911
diff changeset
481 #if !defined(HAVE_LIBKSTAT) && defined(LOAD_AVE_TYPE)
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
482 /* File descriptor open to /dev/kmem or VMS load ave driver. */
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
483 static int channel;
78501
1677cf1c2509 Replace `iff' in comments.
Glenn Morris <rgm@gnu.org>
parents: 75227
diff changeset
484 /* Nonzero if channel is valid. */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
485 static int getloadavg_initialized;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
486 /* Offset in kmem to seek to read load average, or 0 means invalid. */
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
487 static long offset;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
488
51485
f129be4cf98e Set NLIST_STRUCT from HAVE_NLIST_H. Use
Dave Love <fx@gnu.org>
parents: 29782
diff changeset
489 # 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
490 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
491 # endif /* Not VMS or sgi */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
492
51485
f129be4cf98e Set NLIST_STRUCT from HAVE_NLIST_H. Use
Dave Love <fx@gnu.org>
parents: 29782
diff changeset
493 # ifdef SUNOS_5
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
494 static kvm_t *kd;
51485
f129be4cf98e Set NLIST_STRUCT from HAVE_NLIST_H. Use
Dave Love <fx@gnu.org>
parents: 29782
diff changeset
495 # endif /* SUNOS_5 */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
496
23329
a8682715883a Treat __GNU__ line NeXT: undefine BSD and FSCALE.
Richard M. Stallman <rms@gnu.org>
parents: 22855
diff changeset
497 #endif /* LOAD_AVE_TYPE && !HAVE_LIBKSTAT */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
498
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
499 /* Put the 1 minute, 5 minute and 15 minute load averages
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
500 into the first NELEM elements of LOADAVG.
4064
d14ba65a1363 *** empty log message ***
David J. MacKenzie <djm@gnu.org>
parents: 4011
diff changeset
501 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
502 or -1 if an error occurred. */
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
503
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
504 int
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
505 getloadavg (loadavg, nelem)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
506 double loadavg[];
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
507 int nelem;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
508 {
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
509 int elem = 0; /* Return value. */
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
510
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
511 # 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
512 # define LDAV_DONE
3037
3c7a86dba45b *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 2928
diff changeset
513 /* 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
514 this function just can't work at all on this system. */
3c7a86dba45b *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 2928
diff changeset
515 errno = 0;
3c7a86dba45b *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 2928
diff changeset
516 elem = -1;
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
517 # endif
3037
3c7a86dba45b *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 2928
diff changeset
518
17337
24e9e8d0080e Last-minute changed for 3.75.1
Paul D. Smith <psmith@BayNetworks.com>
parents: 17333
diff changeset
519 # 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
520 /* 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
521 # 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
522 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
523 kstat_t *ksp;
481c5be39150 (getloadavg): Add new code for SUNOS_5 to use -lkstat.
Richard M. Stallman <rms@gnu.org>
parents: 15294
diff changeset
524 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
525
481c5be39150 (getloadavg): Add new code for SUNOS_5 to use -lkstat.
Richard M. Stallman <rms@gnu.org>
parents: 15294
diff changeset
526 kc = kstat_open ();
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
527 if (kc == 0)
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
528 return -1;
16151
481c5be39150 (getloadavg): Add new code for SUNOS_5 to use -lkstat.
Richard M. Stallman <rms@gnu.org>
parents: 15294
diff changeset
529 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
530 if (ksp == 0 )
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
531 return -1;
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
532 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
533 return -1;
16413
79ff1c263f5d [__hpux]: Define hpux. From Eric Backus.
Jim Meyering <jim@meyering.net>
parents: 16151
diff changeset
534
16151
481c5be39150 (getloadavg): Add new code for SUNOS_5 to use -lkstat.
Richard M. Stallman <rms@gnu.org>
parents: 15294
diff changeset
535
481c5be39150 (getloadavg): Add new code for SUNOS_5 to use -lkstat.
Richard M. Stallman <rms@gnu.org>
parents: 15294
diff changeset
536 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
537 if (kn == 0)
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 /* 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
540 nelem = 0;
481c5be39150 (getloadavg): Add new code for SUNOS_5 to use -lkstat.
Richard M. Stallman <rms@gnu.org>
parents: 15294
diff changeset
541 elem = -1;
481c5be39150 (getloadavg): Add new code for SUNOS_5 to use -lkstat.
Richard M. Stallman <rms@gnu.org>
parents: 15294
diff changeset
542 }
481c5be39150 (getloadavg): Add new code for SUNOS_5 to use -lkstat.
Richard M. Stallman <rms@gnu.org>
parents: 15294
diff changeset
543
481c5be39150 (getloadavg): Add new code for SUNOS_5 to use -lkstat.
Richard M. Stallman <rms@gnu.org>
parents: 15294
diff changeset
544 if (nelem >= 1)
481c5be39150 (getloadavg): Add new code for SUNOS_5 to use -lkstat.
Richard M. Stallman <rms@gnu.org>
parents: 15294
diff changeset
545 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
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 >= 2)
481c5be39150 (getloadavg): Add new code for SUNOS_5 to use -lkstat.
Richard M. Stallman <rms@gnu.org>
parents: 15294
diff changeset
548 {
481c5be39150 (getloadavg): Add new code for SUNOS_5 to use -lkstat.
Richard M. Stallman <rms@gnu.org>
parents: 15294
diff changeset
549 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
550 if (kn != 0)
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 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
553
481c5be39150 (getloadavg): Add new code for SUNOS_5 to use -lkstat.
Richard M. Stallman <rms@gnu.org>
parents: 15294
diff changeset
554 if (nelem >= 3)
481c5be39150 (getloadavg): Add new code for SUNOS_5 to use -lkstat.
Richard M. Stallman <rms@gnu.org>
parents: 15294
diff changeset
555 {
481c5be39150 (getloadavg): Add new code for SUNOS_5 to use -lkstat.
Richard M. Stallman <rms@gnu.org>
parents: 15294
diff changeset
556 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
557 if (kn != 0)
481c5be39150 (getloadavg): Add new code for SUNOS_5 to use -lkstat.
Richard M. Stallman <rms@gnu.org>
parents: 15294
diff changeset
558 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
559 }
481c5be39150 (getloadavg): Add new code for SUNOS_5 to use -lkstat.
Richard M. Stallman <rms@gnu.org>
parents: 15294
diff changeset
560 }
481c5be39150 (getloadavg): Add new code for SUNOS_5 to use -lkstat.
Richard M. Stallman <rms@gnu.org>
parents: 15294
diff changeset
561 }
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 kstat_close (kc);
17337
24e9e8d0080e Last-minute changed for 3.75.1
Paul D. Smith <psmith@BayNetworks.com>
parents: 17333
diff changeset
564 # endif /* HAVE_LIBKSTAT */
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
565
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
566 # 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
567 /* 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
568 # define LDAV_DONE
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
569 # 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
570
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
571 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
572 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
573 return -1;
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
574 if (nelem > 0)
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
575 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
576 if (nelem > 1)
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
577 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
578 if (nelem > 2)
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
579 loadavg[elem++] = dyn_info.psd_avg_15_min;
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
580
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
581 # 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
582
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
583 # 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
584 # define LDAV_DONE
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
585 # undef LOAD_AVE_TYPE
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
586
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
587 # ifndef LINUX_LDAV_FILE
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
588 # 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
589 # endif
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
590
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
591 char ldavgbuf[40];
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
592 double load_ave[3];
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
593 int fd, count;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
594
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
595 fd = open (LINUX_LDAV_FILE, O_RDONLY);
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
596 if (fd == -1)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
597 return -1;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
598 count = read (fd, ldavgbuf, 40);
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
599 (void) close (fd);
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
600 if (count <= 0)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
601 return -1;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
602
51485
f129be4cf98e Set NLIST_STRUCT from HAVE_NLIST_H. Use
Dave Love <fx@gnu.org>
parents: 29782
diff changeset
603 /* 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
604 setlocale (LC_NUMERIC, "C");
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
605 count = sscanf (ldavgbuf, "%lf %lf %lf",
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
606 &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
607 setlocale (LC_NUMERIC, "");
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
608 if (count < 1)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
609 return -1;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
610
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
611 for (elem = 0; elem < nelem && elem < count; elem++)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
612 loadavg[elem] = load_ave[elem];
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
613
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
614 return elem;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
615
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
616 # endif /* __linux__ */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
617
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
618 # 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
619 # define LDAV_DONE
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
620 # undef LOAD_AVE_TYPE
4807
bc7a85d7ee27 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4752
diff changeset
621
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
622 # ifndef NETBSD_LDAV_FILE
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
623 # 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
624 # endif
4807
bc7a85d7ee27 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4752
diff changeset
625
bc7a85d7ee27 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4752
diff changeset
626 unsigned long int load_ave[3], scale;
bc7a85d7ee27 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4752
diff changeset
627 int count;
bc7a85d7ee27 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4752
diff changeset
628 FILE *fp;
bc7a85d7ee27 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4752
diff changeset
629
4907
fca72ee8bf94 entered into RCS
Roland McGrath <roland@gnu.org>
parents: 4807
diff changeset
630 fp = fopen (NETBSD_LDAV_FILE, "r");
4807
bc7a85d7ee27 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4752
diff changeset
631 if (fp == NULL)
bc7a85d7ee27 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4752
diff changeset
632 return -1;
bc7a85d7ee27 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4752
diff changeset
633 count = fscanf (fp, "%lu %lu %lu %lu\n",
bc7a85d7ee27 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4752
diff changeset
634 &load_ave[0], &load_ave[1], &load_ave[2],
bc7a85d7ee27 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4752
diff changeset
635 &scale);
bc7a85d7ee27 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4752
diff changeset
636 (void) fclose (fp);
bc7a85d7ee27 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4752
diff changeset
637 if (count != 4)
bc7a85d7ee27 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4752
diff changeset
638 return -1;
bc7a85d7ee27 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4752
diff changeset
639
bc7a85d7ee27 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4752
diff changeset
640 for (elem = 0; elem < nelem; elem++)
bc7a85d7ee27 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4752
diff changeset
641 loadavg[elem] = (double) load_ave[elem] / (double) scale;
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 return elem;
bc7a85d7ee27 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4752
diff changeset
644
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
645 # endif /* __NetBSD__ */
4807
bc7a85d7ee27 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4752
diff changeset
646
96772
ade33f1b986e revert changes to getloadavg.c
Adrian Robert <Adrian.B.Robert@gmail.com>
parents: 96675
diff changeset
647 # 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
648 # define LDAV_DONE
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
649 /* The NeXT code was adapted from iscreen 3.2. */
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
650
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
651 host_t host;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
652 struct processor_set_basic_info info;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
653 unsigned info_count;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
654
4064
d14ba65a1363 *** empty log message ***
David J. MacKenzie <djm@gnu.org>
parents: 4011
diff changeset
655 /* 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
656 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
657
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
658 if (!getloadavg_initialized)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
659 {
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
660 if (processor_set_default (host_self (), &default_set) == KERN_SUCCESS)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
661 getloadavg_initialized = 1;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
662 }
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
663
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
664 if (getloadavg_initialized)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
665 {
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
666 info_count = PROCESSOR_SET_BASIC_INFO_COUNT;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
667 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
668 (processor_set_info_t) &info, &info_count)
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
669 != KERN_SUCCESS)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
670 getloadavg_initialized = 0;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
671 else
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
672 {
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
673 if (nelem > 0)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
674 loadavg[elem++] = (double) info.load_average / LOAD_SCALE;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
675 }
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
676 }
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
677
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
678 if (!getloadavg_initialized)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
679 return -1;
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
680 # endif /* NeXT */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
681
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
682 # 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
683 # define LDAV_DONE
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
684 /* UMAX 4.2, which runs on the Encore Multimax multiprocessor, does not
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
685 have a /dev/kmem. Information about the workings of the running kernel
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
686 can be gathered with inq_stats system calls.
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
687 We only know how to get the 1-minute average for this system. */
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
688
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
689 struct proc_summary proc_sum_data;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
690 struct stat_descr proc_info;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
691 double load;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
692 register unsigned int i, j;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
693
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
694 if (cpus == 0)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
695 {
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
696 register unsigned int c, i;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
697 struct cpu_config conf;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
698 struct stat_descr desc;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
699
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
700 desc.sd_next = 0;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
701 desc.sd_subsys = SUBSYS_CPU;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
702 desc.sd_type = CPUTYPE_CONFIG;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
703 desc.sd_addr = (char *) &conf;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
704 desc.sd_size = sizeof conf;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
705
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
706 if (inq_stats (1, &desc))
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
707 return -1;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
708
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
709 c = 0;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
710 for (i = 0; i < conf.config_maxclass; ++i)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
711 {
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
712 struct class_stats stats;
109165
750db9f3e6d8 Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents: 100960
diff changeset
713 memset (&stats, 0, sizeof stats);
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
714
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
715 desc.sd_type = CPUTYPE_CLASS;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
716 desc.sd_objid = i;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
717 desc.sd_addr = (char *) &stats;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
718 desc.sd_size = sizeof stats;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
719
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
720 if (inq_stats (1, &desc))
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
721 return -1;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
722
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
723 c += stats.class_numcpus;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
724 }
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
725 cpus = c;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
726 samples = cpus < 2 ? 3 : (2 * cpus / 3);
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
727 }
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
728
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
729 proc_info.sd_next = 0;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
730 proc_info.sd_subsys = SUBSYS_PROC;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
731 proc_info.sd_type = PROCTYPE_SUMMARY;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
732 proc_info.sd_addr = (char *) &proc_sum_data;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
733 proc_info.sd_size = sizeof (struct proc_summary);
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
734 proc_info.sd_sizeused = 0;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
735
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
736 if (inq_stats (1, &proc_info) != 0)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
737 return -1;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
738
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
739 load = proc_sum_data.ps_nrunnable;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
740 j = 0;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
741 for (i = samples - 1; i > 0; --i)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
742 {
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
743 load += proc_sum_data.ps_nrun[j];
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
744 if (j++ == PS_NRUNSIZE)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
745 j = 0;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
746 }
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
747
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
748 if (nelem > 0)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
749 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
750 # endif /* UMAX */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
751
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
752 # 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
753 # define LDAV_DONE
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
754 /* This call can return -1 for an error, but with good args
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
755 it's not supposed to fail. The first argument is for no
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
756 apparent reason of type `long int *'. */
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
757 dg_sys_info ((long int *) &load_info,
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
758 DG_SYS_INFO_LOAD_INFO_TYPE,
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
759 DG_SYS_INFO_LOAD_VERSION_0);
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
760
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
761 if (nelem > 0)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
762 loadavg[elem++] = load_info.one_minute;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
763 if (nelem > 1)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
764 loadavg[elem++] = load_info.five_minute;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
765 if (nelem > 2)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
766 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
767 # endif /* DGUX */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
768
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
769 # 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
770 # define LDAV_DONE
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
771 /* Apollo code from lisch@mentorg.com (Ray Lischner).
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
772
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
773 This system call is not documented. The load average is obtained as
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
774 three long integers, for the load average over the past minute,
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
775 five minutes, and fifteen minutes. Each value is a scaled integer,
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
776 with 16 bits of integer part and 16 bits of fraction part.
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
777
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
778 I'm not sure which operating system first supported this system call,
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
779 but I know that SR10.2 supports it. */
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
780
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
781 extern void proc1_$get_loadav ();
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
782 unsigned long load_ave[3];
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
783
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
784 proc1_$get_loadav (load_ave);
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
785
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
786 if (nelem > 0)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
787 loadavg[elem++] = load_ave[0] / 65536.0;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
788 if (nelem > 1)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
789 loadavg[elem++] = load_ave[1] / 65536.0;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
790 if (nelem > 2)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
791 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
792 # endif /* apollo */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
793
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
794 # 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
795 # define LDAV_DONE
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
796
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
797 struct tbl_loadavg load_ave;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
798 table (TBL_LOADAVG, 0, &load_ave, 1, sizeof (load_ave));
3037
3c7a86dba45b *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 2928
diff changeset
799 loadavg[elem++]
3c7a86dba45b *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 2928
diff changeset
800 = (load_ave.tl_lscale == 0
3c7a86dba45b *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 2928
diff changeset
801 ? load_ave.tl_avenrun.d[0]
3c7a86dba45b *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 2928
diff changeset
802 : (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
803 # endif /* OSF_MIPS */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
804
17333
0cc83e8612f0 Changes for make 3.75.1
Paul D. Smith <psmith@BayNetworks.com>
parents: 17064
diff changeset
805 # 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
806 # 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
807
2631a29a614c (getloadavg) [MSDOS]: Return 0 load instead of failing the call.
Richard M. Stallman <rms@gnu.org>
parents: 12799
diff changeset
808 /* 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
809 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
810 {
2631a29a614c (getloadavg) [MSDOS]: Return 0 load instead of failing the call.
Richard M. Stallman <rms@gnu.org>
parents: 12799
diff changeset
811 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
812 }
17333
0cc83e8612f0 Changes for make 3.75.1
Paul D. Smith <psmith@BayNetworks.com>
parents: 17064
diff changeset
813 # 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
814
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
815 # 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
816 # define LDAV_DONE
8816
fbc29f1ddd08 (getloadavg): Add OSF_ALPHA support.
Richard M. Stallman <rms@gnu.org>
parents: 7784
diff changeset
817
fbc29f1ddd08 (getloadavg): Add OSF_ALPHA support.
Richard M. Stallman <rms@gnu.org>
parents: 7784
diff changeset
818 struct tbl_loadavg load_ave;
fbc29f1ddd08 (getloadavg): Add OSF_ALPHA support.
Richard M. Stallman <rms@gnu.org>
parents: 7784
diff changeset
819 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
820 for (elem = 0; elem < nelem; elem++)
fbc29f1ddd08 (getloadavg): Add OSF_ALPHA support.
Richard M. Stallman <rms@gnu.org>
parents: 7784
diff changeset
821 loadavg[elem]
fbc29f1ddd08 (getloadavg): Add OSF_ALPHA support.
Richard M. Stallman <rms@gnu.org>
parents: 7784
diff changeset
822 = (load_ave.tl_lscale == 0
fbc29f1ddd08 (getloadavg): Add OSF_ALPHA support.
Richard M. Stallman <rms@gnu.org>
parents: 7784
diff changeset
823 ? load_ave.tl_avenrun.d[elem]
fbc29f1ddd08 (getloadavg): Add OSF_ALPHA support.
Richard M. Stallman <rms@gnu.org>
parents: 7784
diff changeset
824 : (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
825 # endif /* OSF_ALPHA */
8816
fbc29f1ddd08 (getloadavg): Add OSF_ALPHA support.
Richard M. Stallman <rms@gnu.org>
parents: 7784
diff changeset
826
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
827 # if !defined (LDAV_DONE) && defined (VMS)
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
828 /* VMS specific code -- read from the Load Ave driver. */
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
829
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
830 LOAD_AVE_TYPE load_ave[3];
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
831 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
832 # ifdef eunice
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
833 struct
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
834 {
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
835 int dsc$w_length;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
836 char *dsc$a_pointer;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
837 } descriptor;
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
838 # endif
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
839
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
840 /* Ensure that there is a channel open to the load ave device. */
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
841 if (!getloadavg_initialized)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
842 {
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
843 /* 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
844 # ifdef eunice
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
845 descriptor.dsc$w_length = 18;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
846 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
847 # else
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
848 $DESCRIPTOR (descriptor, "LAV0:");
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
849 # endif
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
850 if (sys$assign (&descriptor, &channel, 0, 0) & 1)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
851 getloadavg_initialized = 1;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
852 }
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
853
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
854 /* Read the load average vector. */
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
855 if (getloadavg_initialized
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
856 && !(sys$qiow (0, channel, IO$_READVBLK, 0, 0, 0,
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
857 load_ave, 12, 0, 0, 0, 0) & 1))
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
858 {
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
859 sys$dassgn (channel);
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
860 getloadavg_initialized = 0;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
861 }
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
862
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
863 if (!getloadavg_initialized)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
864 return -1;
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
865 # endif /* VMS */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
866
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
867 # if !defined (LDAV_DONE) && defined(LOAD_AVE_TYPE) && !defined(VMS)
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
868
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
869 /* UNIX-specific code -- read the average from /dev/kmem. */
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
870
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
871 # define LDAV_PRIVILEGED /* This code requires special installation. */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
872
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
873 LOAD_AVE_TYPE load_ave[3];
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
874
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
875 /* Get the address of LDAV_SYMBOL. */
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
876 if (offset == 0)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
877 {
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
878 # ifndef sgi
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
879 # 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
880 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
881 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
882 # else /* NLIST_STRUCT */
51485
f129be4cf98e Set NLIST_STRUCT from HAVE_NLIST_H. Use
Dave Love <fx@gnu.org>
parents: 29782
diff changeset
883 # 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
884 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
885 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
886 # 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
887 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
888 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
889 # 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
890 # endif /* NLIST_STRUCT */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
891
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
892 # ifndef SUNOS_5
11788
3a2d34fad6fb AIX support from Tim Bell <tbel@afsmail.cern.ch>:
Roland McGrath <roland@gnu.org>
parents: 10363
diff changeset
893 if (
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
894 # 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
895 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
896 # 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
897 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
898 # endif
11788
3a2d34fad6fb AIX support from Tim Bell <tbel@afsmail.cern.ch>:
Roland McGrath <roland@gnu.org>
parents: 10363
diff changeset
899 >= 0)
97019
853e0fcfb3f7 (nl): Rename to name_list to avoid ncurses.h clash (bug#86).
Chong Yidong <cyd@stupidchicken.com>
parents: 96772
diff changeset
900 /* 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
901 {
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
902 # 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
903 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
904 # endif
97019
853e0fcfb3f7 (nl): Rename to name_list to avoid ncurses.h clash (bug#86).
Chong Yidong <cyd@stupidchicken.com>
parents: 96772
diff changeset
905 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
906 }
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
907 # endif /* !SUNOS_5 */
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
908 # else /* sgi */
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
909 int ldav_off;
11788
3a2d34fad6fb AIX support from Tim Bell <tbel@afsmail.cern.ch>:
Roland McGrath <roland@gnu.org>
parents: 10363
diff changeset
910
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
911 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
912 if (ldav_off != -1)
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
913 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
914 # endif /* sgi */
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
915 }
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
916
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
917 /* Make sure we have /dev/kmem open. */
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
918 if (!getloadavg_initialized)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
919 {
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
920 # ifndef SUNOS_5
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
921 channel = open ("/dev/kmem", 0);
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
922 if (channel >= 0)
12738
d06973e701f8 (getloadavg): Set FD_CLOEXEC flag on /dev/kmem file descriptor.
Roland McGrath <roland@gnu.org>
parents: 12332
diff changeset
923 {
d06973e701f8 (getloadavg): Set FD_CLOEXEC flag on /dev/kmem file descriptor.
Roland McGrath <roland@gnu.org>
parents: 12332
diff changeset
924 /* 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
925 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
926 # ifdef F_SETFD
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
927 # ifndef FD_CLOEXEC
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
928 # define FD_CLOEXEC 1
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
929 # endif
12738
d06973e701f8 (getloadavg): Set FD_CLOEXEC flag on /dev/kmem file descriptor.
Roland McGrath <roland@gnu.org>
parents: 12332
diff changeset
930 (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
931 # endif
12738
d06973e701f8 (getloadavg): Set FD_CLOEXEC flag on /dev/kmem file descriptor.
Roland McGrath <roland@gnu.org>
parents: 12332
diff changeset
932 getloadavg_initialized = 1;
d06973e701f8 (getloadavg): Set FD_CLOEXEC flag on /dev/kmem file descriptor.
Roland McGrath <roland@gnu.org>
parents: 12332
diff changeset
933 }
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
934 # else /* SUNOS_5 */
4011
1117ec91799c *** empty log message ***
David J. MacKenzie <djm@gnu.org>
parents: 3597
diff changeset
935 /* We pass 0 for the kernel, corefile, and swapfile names
1117ec91799c *** empty log message ***
David J. MacKenzie <djm@gnu.org>
parents: 3597
diff changeset
936 to use the currently running kernel. */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
937 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
938 if (kd != 0)
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
939 {
4011
1117ec91799c *** empty log message ***
David J. MacKenzie <djm@gnu.org>
parents: 3597
diff changeset
940 /* 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
941 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
942 offset = name_list[0].n_value;
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
943 getloadavg_initialized = 1;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
944 }
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
945 # endif /* SUNOS_5 */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
946 }
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
947
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
948 /* If we can, get the load average values. */
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
949 if (offset && getloadavg_initialized)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
950 {
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
951 /* 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
952 # ifndef SUNOS_5
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
953 if (lseek (channel, offset, 0) == -1L
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
954 || read (channel, (char *) load_ave, sizeof (load_ave))
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
955 != sizeof (load_ave))
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
956 {
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
957 close (channel);
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
958 getloadavg_initialized = 0;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
959 }
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
960 # else /* SUNOS_5 */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
961 if (kvm_read (kd, offset, (char *) load_ave, sizeof (load_ave))
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
962 != sizeof (load_ave))
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
963 {
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
964 kvm_close (kd);
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
965 getloadavg_initialized = 0;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
966 }
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
967 # endif /* SUNOS_5 */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
968 }
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
969
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
970 if (offset == 0 || !getloadavg_initialized)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
971 return -1;
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
972 # endif /* LOAD_AVE_TYPE and not VMS */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
973
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
974 # if !defined (LDAV_DONE) && defined (LOAD_AVE_TYPE) /* Including VMS. */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
975 if (nelem > 0)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
976 loadavg[elem++] = LDAV_CVT (load_ave[0]);
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
977 if (nelem > 1)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
978 loadavg[elem++] = LDAV_CVT (load_ave[1]);
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
979 if (nelem > 2)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
980 loadavg[elem++] = LDAV_CVT (load_ave[2]);
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
981
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
982 # define LDAV_DONE
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
983 # endif /* !LDAV_DONE && LOAD_AVE_TYPE */
2928
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 # ifdef LDAV_DONE
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
986 return elem;
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
987 # else
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
988 /* Set errno to zero to indicate that there was no particular error;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
989 this function just can't work at all on this system. */
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
990 errno = 0;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
991 return -1;
16869
16ef2bd09de7 [hpux && HAVE_PSTAT_GETDYNAMIC]: Use HPUX's pstat_getdynamic so
Jim Meyering <jim@meyering.net>
parents: 16413
diff changeset
992 # endif
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
993 }
4409
084df29978c7 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4398
diff changeset
994
084df29978c7 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4398
diff changeset
995 #endif /* ! HAVE_GETLOADAVG */
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
996
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
997 #ifdef TEST
51485
f129be4cf98e Set NLIST_STRUCT from HAVE_NLIST_H. Use
Dave Love <fx@gnu.org>
parents: 29782
diff changeset
998 void
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
999 main (argc, argv)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1000 int argc;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1001 char **argv;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1002 {
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1003 int naptime = 0;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1004
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1005 if (argc > 1)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1006 naptime = atoi (argv[1]);
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1007
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1008 while (1)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1009 {
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1010 double avg[3];
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1011 int loads;
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1012
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1013 errno = 0; /* Don't be misled if it doesn't set errno. */
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1014 loads = getloadavg (avg, 3);
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1015 if (loads == -1)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1016 {
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1017 perror ("Error getting load average");
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1018 exit (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 if (loads > 0)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1021 printf ("1-minute: %f ", avg[0]);
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1022 if (loads > 1)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1023 printf ("5-minute: %f ", avg[1]);
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1024 if (loads > 2)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1025 printf ("15-minute: %f ", avg[2]);
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1026 if (loads > 0)
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1027 putchar ('\n');
4398
67c9f8ba927a *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4349
diff changeset
1028
67c9f8ba927a *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4349
diff changeset
1029 if (naptime == 0)
67c9f8ba927a *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4349
diff changeset
1030 break;
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1031 sleep (naptime);
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1032 }
4398
67c9f8ba927a *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4349
diff changeset
1033
67c9f8ba927a *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 4349
diff changeset
1034 exit (0);
2928
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1035 }
a9e4ef13ce85 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1036 #endif /* TEST */
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51485
diff changeset
1037
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51485
diff changeset
1038 /* arch-tag: 2b37a242-6289-41f4-8cd5-0e73fd615db1
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51485
diff changeset
1039 (do not change this comment) */