소스 검색

Increasing threshold size for traversing memory blocks (#914)

L235 - Increased the memory threshold size so that we can further reduce fragmentation by allocating memory blocks that is close to the requested size by 16 bytes.
pull/927/head
Kevin Yonan 5 년 전
committed by Ray
부모
커밋
f501d42e47
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/rmem.h

+ 1
- 1
src/rmem.h 파일 보기

@ -232,7 +232,7 @@ void *MemPoolAlloc(MemPool *const mempool, const size_t size)
if (mempool->freeList.head != NULL)
{
const size_t MEM_SPLIT_THRESHOLD = k">sizeof(intptr_t);
const size_t MEM_SPLIT_THRESHOLD = mi">16;
// If the freelist is valid, let's allocate FROM the freelist then!
for (MemNode **inode = &mempool->freeList.head; *inode != NULL; inode = &(*inode)->next)

불러오는 중...
취소
저장