summaryrefslogtreecommitdiff
path: root/runtime/caml/minor_gc.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/caml/minor_gc.h')
-rw-r--r--runtime/caml/minor_gc.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/runtime/caml/minor_gc.h b/runtime/caml/minor_gc.h
index 2b58f1900e..44d2d50cf7 100644
--- a/runtime/caml/minor_gc.h
+++ b/runtime/caml/minor_gc.h
@@ -49,12 +49,6 @@ struct caml_custom_table CAML_TABLE_STRUCT(struct caml_custom_elt);
/* Table of custom blocks in the minor heap that contain finalizers
or GC speed parameters. */
-struct caml_minor_tables {
- struct caml_ref_table ref;
- struct caml_ephe_ref_table ephe_ref;
- struct caml_custom_table custom;
-};
-
extern void caml_set_minor_heap_size (asize_t); /* size in bytes */
extern void caml_empty_minor_heap (void);
CAMLextern void caml_gc_dispatch (void);
@@ -70,7 +64,7 @@ extern void caml_alloc_ephe_table (struct caml_ephe_ref_table *,
extern void caml_realloc_custom_table (struct caml_custom_table *);
extern void caml_alloc_custom_table (struct caml_custom_table *,
asize_t, asize_t);
-struct caml_minor_tables* caml_alloc_minor_tables (void);
+void caml_alloc_minor_tables (void);
#define Oldify(p) do{ \
value __oldify__v__ = *p; \