From b221eab4260c471c37ff2aae2546fcfa6dd7ac58 Mon Sep 17 00:00:00 2001 From: lawnjelly Date: Fri, 20 May 2022 13:28:44 +0100 Subject: Variant memory pools Memory pools via PagedAllocator for Transform2D, Transform3D, Basis and AABB. --- platform/linuxbsd/detect_prime_x11.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'platform') diff --git a/platform/linuxbsd/detect_prime_x11.cpp b/platform/linuxbsd/detect_prime_x11.cpp index 42b7f68a5e..fb833ab5e6 100644 --- a/platform/linuxbsd/detect_prime_x11.cpp +++ b/platform/linuxbsd/detect_prime_x11.cpp @@ -177,6 +177,11 @@ int detect_prime() { } else { // In child, exit() here will not quit the engine. + // Prevent false leak reports as we will not be properly + // cleaning up these processes, and fork() makes a copy + // of all globals. + CoreGlobals::leak_reporting_enabled = false; + char string[201]; close(fdset[0]); -- cgit v1.2.3