From a0aa4dcd411c5cd9baa766b69a50736a952fa219 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20G=C3=B6ttgens?= Date: Tue, 23 Apr 2024 12:20:28 +0200 Subject: [PATCH 1/2] Add `public` statement to `Base.GC` --- base/gcutils.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/base/gcutils.jl b/base/gcutils.jl index 3b8c4cf4ede10..ed54ac46c3ec2 100644 --- a/base/gcutils.jl +++ b/base/gcutils.jl @@ -109,6 +109,8 @@ Module with garbage collection utilities. """ module GC +public gc, enable, enable_finalizers, in_finalizer, @preserve, safepoint, enable_logging, logging_enabled + # mirrored from julia.h const GC_AUTO = 0 const GC_FULL = 1 From aedff3aac3b753d269bc0d7524e005fc4ae7760d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20G=C3=B6ttgens?= Date: Tue, 23 Apr 2024 21:30:55 +0200 Subject: [PATCH 2/2] Update base/gcutils.jl --- base/gcutils.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/gcutils.jl b/base/gcutils.jl index ed54ac46c3ec2..7aea7f222d7fd 100644 --- a/base/gcutils.jl +++ b/base/gcutils.jl @@ -109,7 +109,7 @@ Module with garbage collection utilities. """ module GC -public gc, enable, enable_finalizers, in_finalizer, @preserve, safepoint, enable_logging, logging_enabled +public gc, enable, @preserve, safepoint, enable_logging, logging_enabled # mirrored from julia.h const GC_AUTO = 0