From e49c27cbbc52907be4f005c4374108c57cd708d9 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Sun, 30 Oct 2022 21:29:19 -0400 Subject: [PATCH] Increase scratch space to 10MB --- src/hello/scratch.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hello/scratch.d b/src/hello/scratch.d index a076d77..dcbd2ab 100644 --- a/src/hello/scratch.d +++ b/src/hello/scratch.d @@ -6,7 +6,7 @@ module hello.scratch; struct scratch { /* Scratch buffer. */ - private static align(4096) __gshared ubyte[1024 * 1024] scratch; + private static align(4096) __gshared ubyte[10 * 1024 * 1024] scratch; /* Number of scratch buffer bytes used. */ private static __gshared size_t scratch_used;