Compare commits

...

2 Commits

Author SHA1 Message Date
Rika
ce4ea9cde1 Merge branch 'heap' into 'main'
heap.inc with incremental formatting and instant recycling of fixed chunks.

See merge request freepascal.org/fpc/source!694
2025-04-03 19:26:16 +03:00
Rika Ichinose
cab5ee1ba6 heap.inc with incremental formatting and instant recycling of fixed chunks. 2025-03-12 18:17:04 +03:00
2 changed files with 1491 additions and 1444 deletions

File diff suppressed because it is too large Load Diff

View File

@ -97,12 +97,12 @@ Procedure Freememory(p:pointer;Size:ptruint);
Function MemSize(p:pointer):ptruint;
{ Delphi functions }
function GetMem(size:ptruint):pointer;
function GetMem(size:ptruint):pointer; inline;
function GetMemory(size:ptruint):pointer; cdecl;
function Freemem(p:pointer):ptruint;
function Freemem(p:pointer):ptruint; inline;
function Freememory(p:pointer):ptruint; cdecl;
function AllocMem(Size:ptruint):pointer;
function ReAllocMem(var p:pointer;Size:ptruint):pointer;
function ReAllocMem(var p:pointer;Size:ptruint):pointer; inline;
function ReAllocMemory(p:pointer;Size:ptruint):pointer; cdecl;
function GetHeapStatus:THeapStatus;
function GetFPCHeapStatus:TFPCHeapStatus;