0.7.6.12:
[sbcl.git] / src / runtime / gencgc.h
index 2852b1c..4ec36c0 100644 (file)
@@ -32,7 +32,7 @@ struct page {
         write_protected :1,
        /* This flag is set when the above write_protected flag is 
         * cleared by the SIGBUS handler (or SIGSEGV handler, for some
-        * OSes). This is useful for * re-scavenging pages that are
+        * OSes). This is useful for re-scavenging pages that are
         * written during a GC. */
        write_protected_cleared :1,
        /* the region the page is allocated to: 0 for a free page; 1
@@ -70,6 +70,12 @@ struct page {
 #define FREE_PAGE 0
 #define BOXED_PAGE 1
 #define UNBOXED_PAGE 2
+
+/* values for the *_alloc_* parameters */
+#define ALLOC_BOXED 0
+#define ALLOC_UNBOXED 1
+#define ALLOC_QUICK 1
+
 \f
 /* the number of pages needed for the dynamic space - rounding up */
 #define NUM_PAGES ((DYNAMIC_SPACE_SIZE+4095)/4096)