X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=inline;f=src%2Fruntime%2Fgencgc-alloc-region.h;h=cf03761dbf0701e722cf2dea5e88db006a89297a;hb=bd455348d39bee562296741689882dcb97c46ba3;hp=da881b4235758c88825b29d24a9bc50856719736;hpb=78fa16bf55be44cc16845be84d98023e83fb14bc;p=sbcl.git diff --git a/src/runtime/gencgc-alloc-region.h b/src/runtime/gencgc-alloc-region.h index da881b4..cf03761 100644 --- a/src/runtime/gencgc-alloc-region.h +++ b/src/runtime/gencgc-alloc-region.h @@ -1,5 +1,8 @@ #ifndef _GENCGC_ALLOC_REGION_H_ #define _GENCGC_ALLOC_REGION_H_ + +#include "gc.h" + /* Abstract out the data for an allocation region allowing a single * routine to be used for allocation and closing. */ struct alloc_region { @@ -16,7 +19,7 @@ struct alloc_region { extern struct alloc_region boxed_region; extern struct alloc_region unboxed_region; -extern long from_space, new_space; +extern generation_index_t from_space, new_space; extern struct weak_pointer *weak_pointers; extern void *current_region_free_pointer;