aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
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;