aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorEli Zaretskii2010-03-20 07:14:01 -0400
committerEli Zaretskii2010-03-20 07:14:01 -0400
commitf2cdb04ac04fb8f9f92bce11df6e4a020720208b (patch)
tree4d231ff66e4145ce8967ed0c4ab71b364d05675f /src/alloc.c
parent8eef7665fa98baae93da5151c27ca0db4d1d6f5b (diff)
parent22e8757456ea6608246d9c81a83f6c5119f2e1fb (diff)
downloademacs-f2cdb04ac04fb8f9f92bce11df6e4a020720208b.tar.gz
emacs-f2cdb04ac04fb8f9f92bce11df6e4a020720208b.zip
Merge from mainline.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 9a935cc8952..98d60067f9e 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -257,8 +257,6 @@ Lisp_Object Vpurify_flag;
257 257
258Lisp_Object Vmemory_full; 258Lisp_Object Vmemory_full;
259 259
260#ifndef HAVE_SHM
261
262/* Initialize it to a nonzero value to force it into data space 260/* Initialize it to a nonzero value to force it into data space
263 (rather than bss space). That way unexec will remap it into text 261 (rather than bss space). That way unexec will remap it into text
264 space (pure), on some systems. We have not implemented the 262 space (pure), on some systems. We have not implemented the
@@ -268,13 +266,6 @@ Lisp_Object Vmemory_full;
268EMACS_INT pure[(PURESIZE + sizeof (EMACS_INT) - 1) / sizeof (EMACS_INT)] = {1,}; 266EMACS_INT pure[(PURESIZE + sizeof (EMACS_INT) - 1) / sizeof (EMACS_INT)] = {1,};
269#define PUREBEG (char *) pure 267#define PUREBEG (char *) pure
270 268
271#else /* HAVE_SHM */
272
273#define pure PURE_SEG_BITS /* Use shared memory segment */
274#define PUREBEG (char *)PURE_SEG_BITS
275
276#endif /* HAVE_SHM */
277
278/* Pointer to the pure area, and its size. */ 269/* Pointer to the pure area, and its size. */
279 270
280static char *purebeg; 271static char *purebeg;