From f1384146cfe3ef851e29494157713a8c363c79c2 Mon Sep 17 00:00:00 2001 From: Dmitry Boulytchev Date: Sun, 14 Mar 2021 07:08:07 +0300 Subject: [PATCH] Increased MAX_EXTRA_ROOTS --- runtime/runtime.c | 2 +- src/version.ml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/runtime.c b/runtime/runtime.c index 5ba218ba9..265619a8d 100644 --- a/runtime/runtime.c +++ b/runtime/runtime.c @@ -83,7 +83,7 @@ void __post_gc_subst () {} # define BOX(x) ((((int) (x)) << 1) | 0x0001) /* GC extra roots */ -#define MAX_EXTRA_ROOTS_NUMBER 16 +#define MAX_EXTRA_ROOTS_NUMBER 17 typedef struct { int current_free; void ** roots[MAX_EXTRA_ROOTS_NUMBER]; diff --git a/src/version.ml b/src/version.ml index 6eb4a9374..b5f8ae982 100644 --- a/src/version.ml +++ b/src/version.ml @@ -1 +1 @@ -let version = "Version 1.10, a9d9a4e2b, Sat Feb 13 11:16:28 2021 +0300" +let version = "Version 1.10, d61049b15, Thu Feb 25 10:04:50 2021 +0300"