Skip to content

Commit

Permalink
feat(xsnap): grow heap more slowly
Browse files Browse the repository at this point in the history
  • Loading branch information
dckc committed Apr 28, 2021
1 parent db3daaa commit 11795de
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/xsnap/src/xsnap.c
Original file line number Diff line number Diff line change
Expand Up @@ -298,10 +298,10 @@ ExitCode main(int argc, char* argv[])
}
}
xsCreation _creation = {
16 * 1024 * 1024, /* initialChunkSize */
16 * 1024 * 1024, /* incrementalChunkSize */
1 * 1024 * 1024, /* initialHeapCount */
1 * 1024 * 1024, /* incrementalHeapCount */
1 * 1024 * 1024, /* initialChunkSize */
512 * 1024, /* incrementalChunkSize */
16 * 1024, /* initialHeapCount */
256 * 1024, /* incrementalHeapCount */
4096, /* stackCount */
32000, /* keyCount */
1993, /* nameModulo */
Expand Down

0 comments on commit 11795de

Please sign in to comment.