X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fgc.h;h=c27ab794a6c25e1a056a0ca11cc1edc7b5a757d1;hb=c3699db2053ff3b5ac6a98d4431c3789496002d8;hp=3ebed77ff4b85e772fe85ad542a8f3fe327358cf;hpb=a530bbe337109d898d5b4a001fc8f1afa3b5dc39;p=sbcl.git diff --git a/src/runtime/gc.h b/src/runtime/gc.h index 3ebed77..c27ab79 100644 --- a/src/runtime/gc.h +++ b/src/runtime/gc.h @@ -13,29 +13,19 @@ * files for more information. */ -/* - * $Header$ - */ - #ifndef _GC_H_ #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); -#ifndef ibmrt #include "os.h" extern void set_auto_gc_trigger(os_vm_size_t usage); extern void clear_auto_gc_trigger(void); -#endif ibmrt - -#endif _GC_H_ +extern int maybe_gc_pending; +#endif /* _GC_H_ */