From 47a2a5514b67c0c6a7650368cf8908fa5003aa9f Mon Sep 17 00:00:00 2001 From: Tatsuya Kinoshita Date: Mon, 29 Mar 2021 20:37:38 +0900 Subject: Prevent GC warnings of repeated allocation Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=746701 Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=832407 Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=862382 --- main.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'main.c') diff --git a/main.c b/main.c index 5d2904e..d4230c5 100644 --- a/main.c +++ b/main.c @@ -424,6 +424,8 @@ main(int argc, char **argv, char **envp) #if defined(DONT_CALL_GC_AFTER_FORK) && defined(USE_IMAGE) char **getimage_args = NULL; #endif /* defined(DONT_CALL_GC_AFTER_FORK) && defined(USE_IMAGE) */ + if (!getenv("GC_LARGE_ALLOC_WARN_INTERVAL")) + set_environ("GC_LARGE_ALLOC_WARN_INTERVAL", "30000"); GC_INIT(); #if (GC_VERSION_MAJOR>7) || ((GC_VERSION_MAJOR==7) && (GC_VERSION_MINOR>=2)) GC_set_oom_fn(die_oom); -- cgit v1.2.3