aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorMiles Bader2004-09-21 09:34:12 +0000
committerMiles Bader2004-09-21 09:34:12 +0000
commit4b2ed4a6151dac2d11e414e2f923da5e7160ba4f (patch)
tree035379ac696016d8be5099a94fb6b8f6144f7a99 /src/alloc.c
parentfb06d0ce437dec8fb9d913499021fda5fd10ae59 (diff)
parent88a74fa51b4dc8763b607a90f0ee8a099f193a24 (diff)
downloademacs-4b2ed4a6151dac2d11e414e2f923da5e7160ba4f.tar.gz
emacs-4b2ed4a6151dac2d11e414e2f923da5e7160ba4f.zip
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-43
Merge from emacs--cvs-trunk--0 Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-553 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-557 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-558 Merge from gnus--rel--5.10 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-559 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-561 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-30 Update from CVS
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 4b31ec7897e..e783ba581e0 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -186,8 +186,11 @@ 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
192EMACS_INT pure[PURESIZE / sizeof (EMACS_INT)] = {1,}; 195EMACS_INT pure[PURESIZE / sizeof (EMACS_INT)] = {1,};
193#define PUREBEG (char *) pure 196#define PUREBEG (char *) pure