Skip to content

Commit e4c6b24

Browse files
committed
protomatter: Use low end of supervisor heap
Per @tannewt, this area "sees more churn", so it's probably the right choice here
1 parent 9019710 commit e4c6b24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared-module/_protomatter/allocator.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ static inline void *_PM_allocator_impl(size_t sz) {
1313
if (gc_alloc_possible()) {
1414
return m_malloc(sz + sizeof(void*), true);
1515
} else {
16-
supervisor_allocation *allocation = allocate_memory(align32_size(sz), true);
16+
supervisor_allocation *allocation = allocate_memory(align32_size(sz), false);
1717
return allocation ? allocation->ptr : NULL;
1818
}
1919
}

0 commit comments

Comments
 (0)