Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 717 Bytes

arena-allocation.org

File metadata and controls

14 lines (10 loc) · 717 Bytes

Arena Allocation

Tag
Memory management

简单来说就是在一块连续内存中分配多个对象,然后在使用完成后一次性释放:

In computer science, region-based memory management is a type of memory management in which each allocated object is assigned to a region. A region, also called a zone, arena, area, or memory context, is a collection of allocated objects that can be efficiently reallocated or deallocated all at once.

Ref: Region-based memory management - Wikipedia