X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fgencgc-alloc-region.h;h=da881b4235758c88825b29d24a9bc50856719736;hb=5e92e9ed61903658015c2a75c79a32ad41dbd29d;hp=8e9dbed98e2dc98eee394931b6176cabb956192a;hpb=3bb2fb5b9ecdeebecaded4ac6e5af0f653be8867;p=sbcl.git diff --git a/src/runtime/gencgc-alloc-region.h b/src/runtime/gencgc-alloc-region.h index 8e9dbed..da881b4 100644 --- a/src/runtime/gencgc-alloc-region.h +++ b/src/runtime/gencgc-alloc-region.h @@ -9,14 +9,14 @@ struct alloc_region { void *end_addr; /* pointer to the byte after the last usable byte */ /* These are needed when closing the region. */ - int first_page; - int last_page; + long first_page; + long last_page; void *start_addr; }; extern struct alloc_region boxed_region; extern struct alloc_region unboxed_region; -extern int from_space, new_space; +extern long from_space, new_space; extern struct weak_pointer *weak_pointers; extern void *current_region_free_pointer;