summaryrefslogtreecommitdiffstats
path: root/gc.h
diff options
context:
space:
mode:
Diffstat (limited to 'gc.h')
-rw-r--r--gc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/gc.h b/gc.h
index 2d6c5cde..ba065903 100644
--- a/gc.h
+++ b/gc.h
@@ -32,6 +32,7 @@ void protect(val *, ...);
val make_obj(void);
void gc(void);
int gc_state(int);
+int gc_inprogress(void);
void gc_mark(val);
void gc_conservative_mark(val);
void gc_mark_mem(val *low, val *high);
@@ -47,6 +48,7 @@ extern int full_gc;
#endif
void unmark(void);
+void gc_cancel(void);
void gc_hint_func(val *);
void gc_report_copies(val *pvar);
void gc_free_all(void);