Skip to content

Commit

Permalink
Increase def. memory limit.
Browse files Browse the repository at this point in the history
  • Loading branch information
gabordemooij committed Dec 13, 2024
1 parent b12f3cc commit eb0082d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion citrine.c
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ int ctr_init() {
ctr_clex_keyword_assignment_len = strlen( CTR_DICT_ASSIGN );
ctr_clex_keyword_return_len = strlen( CTR_DICT_RETURN );
ctr_clex_param_prefix_char = CTR_DICT_PARAMETER_PREFIX[0];
ctr_gc_memlimit = 10 * 1000000; /* Default memory limit: 10MB */
ctr_gc_memlimit = 64 * 1000000; /* Default memory limit: 64MB */
ctr_gc_mode = 1; /* Default GC mode: regular GC, no pool. */
return 0;
}
Expand Down

0 comments on commit eb0082d

Please sign in to comment.