X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fgc.h;h=c0a1eebd80367ce95742036c4500ae79c149fc04;hb=902e93736a0888aa6b04dc328b1eb328423bf426;hp=8861fecab44246e9b77f03f7f7736a2bc94cde06;hpb=6cbe4d8ba6d7bc469d03a72514c789b1f3944878;p=sbcl.git diff --git a/src/runtime/gc.h b/src/runtime/gc.h index 8861fec..c0a1eeb 100644 --- a/src/runtime/gc.h +++ b/src/runtime/gc.h @@ -17,12 +17,7 @@ #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); #include "os.h" @@ -30,4 +25,6 @@ extern void collect_garbage(unsigned last_gen); extern void set_auto_gc_trigger(os_vm_size_t usage); extern void clear_auto_gc_trigger(void); -#endif _GC_H_ +extern int maybe_gc_pending; +extern int gc_thread_pid; +#endif /* _GC_H_ */