Mercurial > hg > xemacs-beta
comparison nt/config.inc.samp @ 3263:d674024a8674
[xemacs-hg @ 2006-02-27 16:29:00 by crestani]
- Introduce a fancy asynchronous finalization strategy on C level.
- Merge the code conditioned on MC_ALLOC into the code conditioned on
NEW_GC.
- Remove the possibility to free objects manually outside garbage
collections when the new collector is enabled.
author | crestani |
---|---|
date | Mon, 27 Feb 2006 16:29:29 +0000 |
parents | 141c2920ea48 |
children | 57711e9aac15 |
comparison
equal
deleted
inserted
replaced
3262:79d41cfd8e6b | 3263:d674024a8674 |
---|---|
218 | 218 |
219 # Set this to use the new experimental garbage-collection routines instead | 219 # Set this to use the new experimental garbage-collection routines instead |
220 # of the traditional XEmacs garbage-collection routines. | 220 # of the traditional XEmacs garbage-collection routines. |
221 USE_KKCC=1 | 221 USE_KKCC=1 |
222 | 222 |
223 # Set this to use the new experimental allocator routines | 223 # Set this to use the new experimental incremental garbage collector |
224 MC_ALLOC=1 | 224 # and the new allocator routines |
225 | |
226 # Set this to use the new experimental incremental garbage collector routines | |
227 NEW_GC=0 | 225 NEW_GC=0 |
228 | 226 |
229 # Set this to turn on the use of the union type, which gets you improved | 227 # Set this to turn on the use of the union type, which gets you improved |
230 # type checking of Lisp_Objects -- they're declared as unions instead of | 228 # type checking of Lisp_Objects -- they're declared as unions instead of |
231 # ints, and so places where a Lisp_Object is mistakenly passed to a routine | 229 # ints, and so places where a Lisp_Object is mistakenly passed to a routine |