Skip to content
Snippets Groups Projects
Commit ad87ab44 authored by dtc's avatar dtc
Browse files

Increase the default read-only space size by 8MB because non-:small

cores loaded with subsystems can grow rather large.
parent 2a957e76
No related branches found
No related tags found
No related merge requests found
...@@ -3,13 +3,13 @@ ...@@ -3,13 +3,13 @@
This code was written as part of the CMU Common Lisp project at This code was written as part of the CMU Common Lisp project at
Carnegie Mellon University, and has been placed in the public domain. Carnegie Mellon University, and has been placed in the public domain.
$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/x86-validate.h,v 1.5 1998/05/01 01:21:42 dtc Exp $ $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/x86-validate.h,v 1.6 1998/05/27 03:20:22 dtc Exp $
*/ */
#define READ_ONLY_SPACE_START (0x01000000) #define READ_ONLY_SPACE_START (0x01000000)
#ifdef GENCGC #ifdef GENCGC
#define READ_ONLY_SPACE_SIZE (0x02000000) /* 32MB */ #define READ_ONLY_SPACE_SIZE (0x02800000) /* 40MB */
#else #else
#define READ_ONLY_SPACE_SIZE (0x01800000) /* 24MB */ #define READ_ONLY_SPACE_SIZE (0x01800000) /* 24MB */
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment