StanzaOrg / lbstanza-old

L.B. Stanza Programming Language
Other
216 stars 23 forks source link

Implement set-max-heap-size #158

Closed OlegPliss closed 2 years ago

OlegPliss commented 2 years ago

Implementation of the forgotten function set-max-heap-size. The function can shrink and grow the heap size up to MAXIMUM-HEAP-SIZE. Logical space of MAXIMUM-HEAP-SIZE is allocated for the heap when it is created and cannot be later extended. Memory is only committed to this space when necessary and cannot exceed the limit set by set-max-heap-size.

Current value of MAXIMUM-HEAP-SIZE is 8 GB.