Skip to content

Commit

Permalink
disable garbage collection to try and isolate bug
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenmeker committed Nov 26, 2024
1 parent 53b5c0f commit 9a72c6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/runtime/arena.h
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ inline void *arena::kore_arena_alloc(size_t requested) {
// depending on the requested size and tripwire setting. This triggers a garbage
// collect when allowed.
//
time_for_collection = true;
//time_for_collection = true;
tripwire = current_addr_ptr + HYPERBLOCK_SIZE; // won't trigger again until arena swap
}
void *result = allocation_ptr;
Expand Down

0 comments on commit 9a72c6e

Please sign in to comment.