Skip to content

Commit

Permalink
update patch
Browse files Browse the repository at this point in the history
  • Loading branch information
kiennq committed Sep 4, 2024
1 parent fb0c361 commit 1ee8ccf
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions patches/emacs/0001-mps_gen_param_s-increase-to-256MB-for-gc.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
From 04cfac4cf355a9db4f56fd6827ae7fb226df8d5b Mon Sep 17 00:00:00 2001
From: Kien Nguyen <[email protected]>
Date: Wed, 4 Sep 2024 09:30:49 -0700
Subject: [PATCH] mps_gen_param_s: increase to 256MB for gc

---
src/igc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/igc.c b/src/igc.c
index 9ac154644..3754ff36f 100644
--- a/src/igc.c
+++ b/src/igc.c
@@ -4472,7 +4472,7 @@ make_arena (struct igc *gc)
MPS_ARGS_END (args);
IGC_CHECK_RES (res);

- mps_gen_param_s gens[] = { { 128000, 0.8 }, { 5 * 128000, 0.4 } };
+ mps_gen_param_s gens[] = { { 256000, 0.8 }, { 5 * 256000, 0.4 } };
res = mps_chain_create (&gc->chain, gc->arena, ARRAYELTS (gens), gens);
IGC_CHECK_RES (res);
}
--
2.46.0.vfs.0.0

0 comments on commit 1ee8ccf

Please sign in to comment.