Re: [PATCH 1/8] memarea: introduce memory area library

2022-09-20 Thread fengchengwen
Hi Dmitry, On 2022/9/20 19:30, Dmitry Kozlyuk wrote: 2022-09-20 03:46 (UTC+), Chengwen Feng: The memarea library is an allocator of variable-size object. It is a collection of allocated objects that can be efficiently alloc or free all at once, the main features are as follows: a) it facili

Re: [PATCH 1/8] memarea: introduce memory area library

2022-09-20 Thread Dmitry Kozlyuk
2022-09-20 14:30 (UTC+0300), Dmitry Kozlyuk: > 2022-09-20 03:46 (UTC+), Chengwen Feng: > > The memarea library is an allocator of variable-size object. It is a > > collection of allocated objects that can be efficiently alloc or free > > all at once, the main features are as follows: > > a) it

Re: [PATCH 1/8] memarea: introduce memory area library

2022-09-20 Thread Dmitry Kozlyuk
2022-09-20 03:46 (UTC+), Chengwen Feng: > The memarea library is an allocator of variable-size object. It is a > collection of allocated objects that can be efficiently alloc or free > all at once, the main features are as follows: > a) it facilitate alloc and free of memory with low overhead.

[PATCH 1/8] memarea: introduce memory area library

2022-09-19 Thread Chengwen Feng
The memarea library is an allocator of variable-size object. It is a collection of allocated objects that can be efficiently alloc or free all at once, the main features are as follows: a) it facilitate alloc and free of memory with low overhead. b) it provides refcnt feature which could be useful