annotate src/pure.c @ 337:fbbf69b4e8a7 r21-0-66

Import from CVS: tag r21-0-66
author cvs
date Mon, 13 Aug 2007 10:51:02 +0200
parents c5d627a313b1
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 /* Synched up with: FSF 19.30. Split out of alloc.c. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 #include <config.h>
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 223
diff changeset
21 #include "lisp.h"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 #include "puresize.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 0
diff changeset
24 /* Moved from puresize.h to here so alloc.c does not get recompiled */
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 0
diff changeset
25
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 171
diff changeset
26 # include <puresize-adjust.h>
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 0
diff changeset
27 #define PURESIZE ((RAW_PURESIZE) + (PURESIZE_ADJUSTMENT))
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 0
diff changeset
28
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 223
diff changeset
29 size_t
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 223
diff changeset
30 get_PURESIZE (void)
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 0
diff changeset
31 {
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 0
diff changeset
32 return PURESIZE;
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 0
diff changeset
33 }
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 0
diff changeset
34
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 223
diff changeset
35 /* Force linker to put it into data space! */
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 223
diff changeset
36 EMACS_INT pure[PURESIZE / sizeof (EMACS_INT)] = { (EMACS_INT) 0};