<p>Am 03.03.2016 03:07 schrieb "silvioprog" <<a href="mailto:silvioprog@gmail.com">silvioprog@gmail.com</a>>:<br>
> Now, if you compile and run this project below with -gh:<br>
><br>
> program project1;<br>
><br>
> {$mode objfpc}{$H+}<br>
><br>
> begin<br>
> end.<br>
><br>
> You will get:<br>
><br>
> Heap dump by heaptrc unit<br>
> 47 memory blocks allocated : 1173/1280<br>
> 47 memory blocks freed     : 1173/1280<br>
> 0 unfreed memory blocks : 0<br>
> True heap size : 163840 (112 used in System startup)<br>
> True free heap : 163728<br>
><br>
> What means "112 used in System startup"? I have a project that in some cases I get:<br>
><br>
> Heap dump by heaptrc unit<br>
> 90 memory blocks allocated : 2827/3072<br>
> 90 memory blocks freed     : 2827/3072<br>
> 0 unfreed memory blocks : 0<br>
> True heap size : 196608<br>
> True free heap : 196480<br>
> Should be : 196608<br>
><br>
> So it seems that the "Should be : 196608" in this case is related to the 128 used in the system startup, because when I comment all the code in this project I get "128 used in System startup".</p>
<p>That is the memory that had been used before the memory manager of the heaptrc unit had been setup. Remember that there's first the System unit initialization and only then the initialization of the heaptrc unit.</p>
<p>Regards,<br>
Sven</p>