X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fcheneygc.c;h=60bd5afec67bd2313d270adaa5ffdb3d475730c4;hb=402958f92506b9d3de852601b8c1ccb99b5ee558;hp=2fe298ce8957fa4a2229c11ee3d1fdcef8790bff;hpb=d6237a4b49e0a27e8abdd75f96eb467e4b8ab5d9;p=sbcl.git diff --git a/src/runtime/cheneygc.c b/src/runtime/cheneygc.c index 2fe298c..60bd5af 100644 --- a/src/runtime/cheneygc.c +++ b/src/runtime/cheneygc.c @@ -47,7 +47,6 @@ lispobj *new_space; lispobj *new_space_free_pointer; static void scavenge_newspace(void); -static void scavenge_interrupt_contexts(void); extern unsigned long bytes_consed_between_gcs; @@ -109,7 +108,7 @@ lispobj copy_large_object(lispobj object, long nwords) { * last_generation argument. That's meaningless for us, since we're * not a generational GC. So we ignore it. */ void -collect_garbage(unsigned ignore) +collect_garbage(generation_index_t ignore) { #ifdef PRINTNOISE struct timeval start_tv, stop_tv;