Skip to content

Commit eb0082d

Browse files
committed
Increase def. memory limit.
1 parent b12f3cc commit eb0082d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

citrine.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ int ctr_init() {
116116
ctr_clex_keyword_assignment_len = strlen( CTR_DICT_ASSIGN );
117117
ctr_clex_keyword_return_len = strlen( CTR_DICT_RETURN );
118118
ctr_clex_param_prefix_char = CTR_DICT_PARAMETER_PREFIX[0];
119-
ctr_gc_memlimit = 10 * 1000000; /* Default memory limit: 10MB */
119+
ctr_gc_memlimit = 64 * 1000000; /* Default memory limit: 64MB */
120120
ctr_gc_mode = 1; /* Default GC mode: regular GC, no pool. */
121121
return 0;
122122
}

0 commit comments

Comments
 (0)