Add support for DISABLE_SYSTEMINLINE inside heaptrc unit

This commit is contained in:
Pierre Muller 2024-05-02 07:56:33 +00:00
parent d1510840d0
commit cb6fe28898

View File

@ -23,6 +23,10 @@ interface
{$define EXTRA} {$define EXTRA}
{$inline off} {$inline off}
{$endif FPC_HEAPTRC_EXTRA} {$endif FPC_HEAPTRC_EXTRA}
{$ifndef DISABLE_SYSTEMINLINE}
{$define SYSTEMINLINE}
{$endif}
{$TYPEDADDRESS on} {$TYPEDADDRESS on}
@ -605,7 +609,7 @@ end;
*****************************************************************************} *****************************************************************************}
function CheckFreeMemSize(loc_info: pheap_info; pp: pheap_mem_info; function CheckFreeMemSize(loc_info: pheap_info; pp: pheap_mem_info;
size, ppsize: ptruint): boolean; inline; size, ppsize: ptruint): boolean;{$ifdef SYSTEMINLINE}inline;{$endif}
var var
ptext : ^text; ptext : ^text;
{$ifdef EXTRA} {$ifdef EXTRA}