[Sablevm-bugs] [ sablevm-Bugs-707799 ] heap size test condition
Brought to you by:
egagnon
From: SourceForge.net <no...@so...> - 2003-03-21 23:58:01
|
Bugs item #707799, was opened at 2003-03-21 16:10 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105523&aid=707799&group_id=5523 Category: Other Group: SableVM Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: heap size test condition Initial Comment: In the file "gc_copying.c" on line 45, the test condtion is: if (vm->heap.allocation_increment == 0 && (2 * vm->heap.min_size) < vm->heap.min_size) I think it should be if (vm->heap.allocation_increment == 0 && (2 * vm->heap.min_size) < vm->heap.max_size) ^ i.e. replace min_size by max_size. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105523&aid=707799&group_id=5523 |