X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fgc.h;h=4760349b7f5e02e260619d852427654df4400f0a;hb=4ed3f0d08c3a57a6762018d9622f253ab9d0f2b6;hp=7a2fec15b7a190349e3bee44f7fb274c282302e1;hpb=fdd3f1d028eed3a886dae0c5635ddd70ca12b206;p=sbcl.git diff --git a/src/runtime/gc.h b/src/runtime/gc.h index 7a2fec1..4760349 100644 --- a/src/runtime/gc.h +++ b/src/runtime/gc.h @@ -17,17 +17,16 @@ #define _GC_H_ extern void gc_init(void); - -/* Note: CMU CL had two different argument conventions for - * collect_garbage(..), depending on whether gencgc was in use. SBCL - * should have only one, which is automatic right now (20000814) since - * we only support gencgc, but should also be maintained if someone - * adds another GC, or ports one of the other CMU CL GCs like gengc. */ +extern void gc_initialize_pointers(void); extern void collect_garbage(unsigned last_gen); +extern void gc_init_tables(void); + #include "os.h" extern void set_auto_gc_trigger(os_vm_size_t usage); extern void clear_auto_gc_trigger(void); +extern int maybe_gc_pending; +extern int gc_thread_pid; #endif /* _GC_H_ */