aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRoland McGrath1993-07-30 03:20:49 +0000
committerRoland McGrath1993-07-30 03:20:49 +0000
commit22ddf25060df64d2ae24b5a85d7c0a56a9b142dc (patch)
treee65be3c7d3e63bb43627e20759c6605711d52f31 /src
parentd859c2cb938ff78f78df02b21ffa50d67a2c15c7 (diff)
downloademacs-22ddf25060df64d2ae24b5a85d7c0a56a9b142dc.tar.gz
emacs-22ddf25060df64d2ae24b5a85d7c0a56a9b142dc.zip
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r--src/getloadavg.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/getloadavg.c b/src/getloadavg.c
index 397fc46dbc1..60036bce46f 100644
--- a/src/getloadavg.c
+++ b/src/getloadavg.c
@@ -31,7 +31,7 @@
31 the nlist n_name element is a pointer, 31 the nlist n_name element is a pointer,
32 not an array. 32 not an array.
33 NLIST_NAME_UNION struct nlist has an n_un member, not n_name. 33 NLIST_NAME_UNION struct nlist has an n_un member, not n_name.
34 LINUX_LDAV_FILE [LINUX]: Name of file containing load averages. 34 LINUX_LDAV_FILE [__linux__]: File containing load averages.
35 35
36 Specific system predefines this file uses, aside from setting 36 Specific system predefines this file uses, aside from setting
37 default values if not emacs: 37 default values if not emacs:
@@ -49,7 +49,7 @@
49 UMAX 49 UMAX
50 UMAX4_3 50 UMAX4_3
51 VMS 51 VMS
52 LINUX Linux: assumes /proc filesystem mounted. 52 __linux__ Linux: assumes /proc filesystem mounted.
53 Support from Michael K. Johnson. 53 Support from Michael K. Johnson.
54 54
55 In addition, to avoid nesting many #ifdefs, we internally set 55 In addition, to avoid nesting many #ifdefs, we internally set
@@ -457,7 +457,7 @@ getloadavg (loadavg, nelem)
457 elem = -1; 457 elem = -1;
458#endif 458#endif
459 459
460#if !defined (LDAV_DONE) && defined (LINUX) 460#if !defined (LDAV_DONE) && defined (__linux__)
461#define LDAV_DONE 461#define LDAV_DONE
462#undef LOAD_AVE_TYPE 462#undef LOAD_AVE_TYPE
463 463
@@ -487,7 +487,7 @@ getloadavg (loadavg, nelem)
487 487
488 return elem; 488 return elem;
489 489
490#endif /* LINUX */ 490#endif /* __linux__ */
491 491
492#if !defined (LDAV_DONE) && defined (NeXT) 492#if !defined (LDAV_DONE) && defined (NeXT)
493#define LDAV_DONE 493#define LDAV_DONE