diff options
author | Alpha DIALLO <alpha@tarides.com> | 2021-11-05 15:58:37 +0000 |
---|---|---|
committer | Alpha DIALLO <alpha@tarides.com> | 2021-11-05 15:58:37 +0000 |
commit | e71afdd0d6e4c5f611966fb60a23bc32041d47bb (patch) | |
tree | cd93fc9b52bd2feb8d348b160980e391fbb216ac /runtime/caml/minor_gc.h | |
parent | ebf01d0adc3e0b65e4715feef2d0dfb64dc77fde (diff) | |
download | ocaml-e71afdd0d6e4c5f611966fb60a23bc32041d47bb.tar.gz |
fix check-typo
Diffstat (limited to 'runtime/caml/minor_gc.h')
-rw-r--r-- | runtime/caml/minor_gc.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/caml/minor_gc.h b/runtime/caml/minor_gc.h index 16c47b2a6c..7edd8c54a8 100644 --- a/runtime/caml/minor_gc.h +++ b/runtime/caml/minor_gc.h @@ -63,7 +63,9 @@ CAMLextern void caml_minor_collection (void); #ifdef CAML_INTERNALS extern void caml_set_minor_heap_size (asize_t); /* size in bytes */ -extern void caml_empty_minor_heap_no_major_slice_from_stw (caml_domain_state* domain, void* unused, int participating_count, caml_domain_state** participating); /* in STW */ +extern void caml_empty_minor_heap_no_major_slice_from_stw + (caml_domain_state* domain, void* unused, int participating_count, + caml_domain_state** participating); /* in STW */ extern int caml_try_stw_empty_minor_heap_on_all_domains(); /* out STW */ extern void caml_empty_minor_heaps_once(); /* out STW */ CAMLextern void garbage_collection (void); /* def in asmrun/signals.c */ |