projects
/
sbcl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6502b3a
)
cleanup: types in gc_alloc_update_page_tables
author
Nikodemus Siivola
<nikodemus@random-state.net>
Fri, 25 Nov 2011 14:31:17 +0000
(16:31 +0200)
committer
Nikodemus Siivola
<nikodemus@random-state.net>
Sun, 27 Nov 2011 11:19:04 +0000
(13:19 +0200)
src/runtime/gencgc.c
patch
|
blob
|
history
diff --git
a/src/runtime/gencgc.c
b/src/runtime/gencgc.c
index
62f5e8a
..
6e49fde
100644
(file)
--- a/
src/runtime/gencgc.c
+++ b/
src/runtime/gencgc.c
@@
-988,13
+988,13
@@
add_new_area(page_index_t first_page, size_t offset, size_t size)
void
gc_alloc_update_page_tables(int page_type_flag, struct alloc_region *alloc_region)
{
- int more;
+ boolean more;
page_index_t first_page;
page_index_t next_page;
- unsigned long bytes_used;
- unsigned long orig_first_page_bytes_used;
- unsigned long region_size;
- unsigned long byte_cnt;
+ os_vm_size_t bytes_used;
+ os_vm_size_t region_size;
+ os_vm_size_t byte_cnt;
+ page_bytes_t orig_first_page_bytes_used;
int ret;