forked from juanjosegarciaripoll/emacs-build
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
patches/emacs/0001-mps_gen_param_s-increase-to-256MB-for-gc.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|