Skip to content

Commit 9a72c6e

Browse files
committed
disable garbage collection to try and isolate bug
1 parent 53b5c0f commit 9a72c6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/runtime/arena.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ inline void *arena::kore_arena_alloc(size_t requested) {
154154
// depending on the requested size and tripwire setting. This triggers a garbage
155155
// collect when allowed.
156156
//
157-
time_for_collection = true;
157+
//time_for_collection = true;
158158
tripwire = current_addr_ptr + HYPERBLOCK_SIZE; // won't trigger again until arena swap
159159
}
160160
void *result = allocation_ptr;

0 commit comments

Comments
 (0)