Skip to content

Commit

Permalink
Less, even less
Browse files Browse the repository at this point in the history
  • Loading branch information
gbaraldi committed Jun 23, 2023
1 parent 0e335dc commit 78cbc8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gc.c
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ static const size_t default_collect_interval = 3200 * 1024 * sizeof(void*);
// Work really hard to stay within 2GB
// Alternative is to risk running out of address space
// on 32 bit architectures.
static memsize_t max_total_memory = (memsize_t) 1024 * 1024 * 1024; // The new heuristics use all the heap, which makes it run out
static memsize_t max_total_memory = (memsize_t) 768 * 1024 * 1024; // The new heuristics use all the heap, which makes it run out
#endif

// global variables for GC stats
Expand Down

0 comments on commit 78cbc8d

Please sign in to comment.