PREV INDEX NEXT

Author: Unknown
Subject: limit
Date: Tuesday, 27 Oct 2020, 23:10:10

"The limit is on the total amount of storage in the data
(= globals and static locals), heap (= malloc()-ed), and
stack (= arguments and automatic locals) segments and
applies at ALL times."

On this limit above that you explained in another response, does this also applied to freed memory? For example, if we had 10000 bytes of memory (and 9*SIZE was hypothetically 20000 bytes), and then freed the memory, and then allocated 15000 bytes, is the 10000 bytes that were initially freed looked at for the 9*SIZE constraint?
PREV INDEX NEXT