Cleanup invalid mirrors
[sxemacs] / src / lastfile.c
1 /* Mark end of data space to dump as pure, for SXEmacs.
2    Copyright (C) 1985 Free Software Foundation, Inc.
3
4 This file is part of SXEmacs
5
6 SXEmacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 SXEmacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program.  If not, see <http://www.gnu.org/licenses/>. */
18
19
20 /* Synched up with: FSF 19.30. */
21
22 /* How this works:
23
24  Fdump_emacs dumps everything up to my_edata as text space (pure).
25
26  The files of Emacs are written so as to have no initialized
27  data that can ever need to be altered except at the first startup.
28  This is so that those words can be dumped as sharable text.
29
30  It is not possible to exercise such control over library files.
31  So it is necessary to refrain from making their data areas shared.
32  Therefore, this file is loaded following all the files of Emacs
33  but before library files.
34  As a result, the symbol my_edata indicates the point
35  in data space between data coming from Emacs and data
36  coming from libraries.
37 */
38
39 #include <config.h>
40
41 char my_edata[] = "End of Emacs initialized data";
42
43 /* Ensure there is enough slack in the .bss to pad with. */
44 #ifdef HEAP_IN_DATA
45 #define BSS_PADDING 0x1000
46 #else
47 #define BSS_PADDING 1
48 #endif
49
50 char my_ebss[BSS_PADDING];