Mercurial > emacs
comparison src/mem-limits.h @ 41969:e669966d496e
Test GNU_LINUX, not LINUX.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 11 Dec 2001 22:20:20 +0000 |
parents | 14f9303d9d82 |
children | 243b781b4ba5 |
comparison
equal
deleted
inserted
replaced
41968:464d0a0dcf2e | 41969:e669966d496e |
---|---|
116 extern long ulimit (); | 116 extern long ulimit (); |
117 | 117 |
118 lim_data = -1; | 118 lim_data = -1; |
119 | 119 |
120 /* Use the ulimit call, if we seem to have it. */ | 120 /* Use the ulimit call, if we seem to have it. */ |
121 #if !defined (ULIMIT_BREAK_VALUE) || defined (LINUX) | 121 #if !defined (ULIMIT_BREAK_VALUE) || defined (GNU_LINUX) |
122 lim_data = ulimit (3, 0); | 122 lim_data = ulimit (3, 0); |
123 #endif | 123 #endif |
124 | 124 |
125 /* If that didn't work, just use the macro's value. */ | 125 /* If that didn't work, just use the macro's value. */ |
126 #ifdef ULIMIT_BREAK_VALUE | 126 #ifdef ULIMIT_BREAK_VALUE |