[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/alloc.c [lexbind]
From: |
Miles Bader |
Subject: |
[Emacs-diffs] Changes to emacs/src/alloc.c [lexbind] |
Date: |
Wed, 06 Oct 2004 01:49:52 -0400 |
Index: emacs/src/alloc.c
diff -c emacs/src/alloc.c:1.272.2.15 emacs/src/alloc.c:1.272.2.16
*** emacs/src/alloc.c:1.272.2.15 Thu Sep 16 00:15:00 2004
--- emacs/src/alloc.c Wed Oct 6 05:21:56 2004
***************
*** 186,193 ****
#ifndef HAVE_SHM
! /* Force it into data space! Initialize it to a nonzero value;
! otherwise some compilers put it into BSS. */
EMACS_INT pure[PURESIZE / sizeof (EMACS_INT)] = {1,};
#define PUREBEG (char *) pure
--- 186,196 ----
#ifndef HAVE_SHM
! /* Initialize it to a nonzero value to force it into data space
! (rather than bss space). That way unexec will remap it into text
! space (pure), on some systems. We have not implemented the
! remapping on more recent systems because this is less important
! nowadays than in the days of small memories and timesharing. */
EMACS_INT pure[PURESIZE / sizeof (EMACS_INT)] = {1,};
#define PUREBEG (char *) pure
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] Changes to emacs/src/alloc.c [lexbind],
Miles Bader <=