Mercurial > emacs
comparison src/alloc.c @ 57137:646750cbd594
Comment change.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 18 Sep 2004 19:18:58 +0000 |
parents | 0487c26b96ee |
children | ff0c144203a1 4df500c93e1d 0796fc36c2bd |
comparison
equal
deleted
inserted
replaced
57136:e3e9cc4b48e0 | 57137:646750cbd594 |
---|---|
184 | 184 |
185 Lisp_Object Vmemory_full; | 185 Lisp_Object Vmemory_full; |
186 | 186 |
187 #ifndef HAVE_SHM | 187 #ifndef HAVE_SHM |
188 | 188 |
189 /* Force it into data space! Initialize it to a nonzero value; | 189 /* Initialize it to a nonzero value to force it into data space |
190 otherwise some compilers put it into BSS. */ | 190 (rather than bss space). That way unexec will remap it into text |
191 space (pure), on some systems. We have not implemented the | |
192 remapping on more recent systems because this is less important | |
193 nowadays than in the days of small memories and timesharing. */ | |
191 | 194 |
192 EMACS_INT pure[PURESIZE / sizeof (EMACS_INT)] = {1,}; | 195 EMACS_INT pure[PURESIZE / sizeof (EMACS_INT)] = {1,}; |
193 #define PUREBEG (char *) pure | 196 #define PUREBEG (char *) pure |
194 | 197 |
195 #else /* HAVE_SHM */ | 198 #else /* HAVE_SHM */ |