The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #14187 from NickBarnes/empty-minor-heap

Remove misleading comment, and improve function call

authored by

Gabriel Scherer and committed by
GitHub
afc8eb8d b386fd53

+1 -3
+1 -3
runtime/minor_gc.c
··· 130 130 131 131 if (domain_state->young_ptr != domain_state->young_end) { 132 132 CAML_EV_COUNTER (EV_C_FORCE_MINOR_SET_MINOR_HEAP_SIZE, 1); 133 - // Don't call caml_minor_collection, since that can run the 134 - // caml_domain_external_interrupt_hook, which can allocate. 135 - caml_empty_minor_heaps_once(); 133 + caml_minor_collection(); 136 134 } 137 135 CAMLassert (domain_state->young_ptr == domain_state->young_end); 138 136