Skip to content

Commit

Permalink
Reverting r49557 to resolve Rakudo abnormal build times
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.parrot.org/parrot/trunk@49583 d31e2699-5ff4-0310-a27c-f18f2fbe73fe
  • Loading branch information
Util committed Oct 19, 2010
1 parent cf6e9a4 commit c1556c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gc/gc_ms2.c
Original file line number Diff line number Diff line change
Expand Up @@ -630,9 +630,9 @@ Parrot_gc_ms2_init(PARROT_INTERP)

self->fixed_size_allocator = Parrot_gc_fixed_allocator_new(interp);

/* Collect every 16M allocated. */
/* Collect every 256M allocated. */
/* Hardcode for now. Will be configured via CLI */
self->gc_threshold = 16 * 1024 * 1024;
self->gc_threshold = 256 * 1024 * 1024;
}

interp->gc_sys->gc_private = self;
Expand Down

0 comments on commit c1556c2

Please sign in to comment.