1992-01-13 21:48:03 +00:00
|
|
|
/* Mark end of data space to dump as pure, for GNU Emacs.
|
2011-01-25 04:08:28 +00:00
|
|
|
Copyright (C) 1985, 2001-2011 Free Software Foundation, Inc.
|
1992-01-13 21:48:03 +00:00
|
|
|
|
|
|
|
This file is part of GNU Emacs.
|
|
|
|
|
2008-05-14 07:50:26 +00:00
|
|
|
GNU Emacs is free software: you can redistribute it and/or modify
|
1992-01-13 21:48:03 +00:00
|
|
|
it under the terms of the GNU General Public License as published by
|
2008-05-14 07:50:26 +00:00
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
1992-01-13 21:48:03 +00:00
|
|
|
|
|
|
|
GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2008-05-14 07:50:26 +00:00
|
|
|
along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
1992-01-13 21:48:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* How this works:
|
|
|
|
|
|
|
|
Fdump_emacs dumps everything up to my_edata as text space (pure).
|
|
|
|
|
|
|
|
The files of Emacs are written so as to have no initialized
|
|
|
|
data that can ever need to be altered except at the first startup.
|
|
|
|
This is so that those words can be dumped as sharable text.
|
|
|
|
|
|
|
|
It is not possible to exercise such control over library files.
|
|
|
|
So it is necessary to refrain from making their data areas shared.
|
|
|
|
Therefore, this file is loaded following all the files of Emacs
|
|
|
|
but before library files.
|
|
|
|
As a result, the symbol my_edata indicates the point
|
|
|
|
in data space between data coming from Emacs and data
|
|
|
|
coming from libraries.
|
|
|
|
*/
|
|
|
|
|
1999-01-17 19:16:08 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
1995-03-21 20:02:52 +00:00
|
|
|
char my_edata[] = "End of Emacs initialized data";
|
|
|
|
|
1997-09-03 07:30:49 +00:00
|
|
|
/* Help unexec locate the end of the .bss area used by Emacs (which
|
|
|
|
isn't always a separate section in NT executables). */
|
|
|
|
char my_endbss[1];
|
1999-01-17 19:16:08 +00:00
|
|
|
|
1998-04-17 05:25:35 +00:00
|
|
|
/* The Alpha MSVC linker globally segregates all static and public bss
|
|
|
|
data, so we must take both into account to determine the true extent
|
|
|
|
of the bss area used by Emacs. */
|
|
|
|
static char _my_endbss[1];
|
|
|
|
char * my_endbss_static = _my_endbss;
|
2003-09-01 15:45:59 +00:00
|
|
|
|