mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-28 16:40:28 +02:00
Add support for DISABLE_SYSTEMINLINE inside heaptrc unit
This commit is contained in:
parent
d1510840d0
commit
cb6fe28898
@ -23,6 +23,10 @@ interface
|
||||
{$define EXTRA}
|
||||
{$inline off}
|
||||
{$endif FPC_HEAPTRC_EXTRA}
|
||||
{$ifndef DISABLE_SYSTEMINLINE}
|
||||
{$define SYSTEMINLINE}
|
||||
{$endif}
|
||||
|
||||
|
||||
{$TYPEDADDRESS on}
|
||||
|
||||
@ -605,7 +609,7 @@ end;
|
||||
*****************************************************************************}
|
||||
|
||||
function CheckFreeMemSize(loc_info: pheap_info; pp: pheap_mem_info;
|
||||
size, ppsize: ptruint): boolean; inline;
|
||||
size, ppsize: ptruint): boolean;{$ifdef SYSTEMINLINE}inline;{$endif}
|
||||
var
|
||||
ptext : ^text;
|
||||
{$ifdef EXTRA}
|
||||
|
Loading…
Reference in New Issue
Block a user