···239239 total size of live objects. */
240240#define Percent_free_def 120
241241242242-/* Maximum number of domains */
243243-#ifdef ARCH_SIXTYFOUR
244244-#define Max_domains 128
245245-#else
246246-#define Max_domains 16
247247-#endif
248248-249242/* Default setting for the major GC slice smoothing window: 1
250243 (i.e. no smoothing)
251244*/
+8
runtime/caml/domain.h
···2929#include "domain_state.h"
3030#include "platform.h"
31313232+/* The runtime currently has a hard limit on the number of domains.
3333+ This hard limit may go away in the future. */
3434+#ifdef ARCH_SIXTYFOUR
3535+#define Max_domains 128
3636+#else
3737+#define Max_domains 16
3838+#endif
3939+3240/* is the minor heap full or an external interrupt has been triggered */
3341Caml_inline int caml_check_gc_interrupt(caml_domain_state * dom_st)
3442{