mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
changed MINIMUM_HEAP_CAPACITY
This commit is contained in:
parent
e4fd3c487a
commit
fc81547ca3
2 changed files with 2 additions and 2 deletions
|
|
@ -215,7 +215,7 @@ void physically_relocate (memory_chunk *old_heap) {
|
||||||
heap_iterator from_iter = heap_begin_iterator();
|
heap_iterator from_iter = heap_begin_iterator();
|
||||||
|
|
||||||
while (!heap_is_done_iterator(&from_iter)) {
|
while (!heap_is_done_iterator(&from_iter)) {
|
||||||
void *obj = get_object_content_ptr(from_iter.current);
|
void *obj = get_object_content_ptr(from_iter.current);
|
||||||
heap_iterator next_iter = from_iter;
|
heap_iterator next_iter = from_iter;
|
||||||
heap_next_obj_iterator(&next_iter);
|
heap_next_obj_iterator(&next_iter);
|
||||||
if (is_marked(obj)) {
|
if (is_marked(obj)) {
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@
|
||||||
#ifdef DEBUG_VERSION
|
#ifdef DEBUG_VERSION
|
||||||
# define MINIMUM_HEAP_CAPACITY (8)
|
# define MINIMUM_HEAP_CAPACITY (8)
|
||||||
#else
|
#else
|
||||||
# define MINIMUM_HEAP_CAPACITY (1 << 10)
|
# define MINIMUM_HEAP_CAPACITY (1 << 25)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue