You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We now have heap allocation wired up in lustc. This means that its time to start thinking about garbage collection. For now I have wrapped malloc in an alloc function. In 164 Hilfinger uses a similar method and I believe that later we ought to be able to add some machinery to alloc to track allocations and later garbage collect.
The text was updated successfully, but these errors were encountered:
We now have heap allocation wired up in
lustc
. This means that its time to start thinking about garbage collection. For now I have wrappedmalloc
in analloc
function. In 164 Hilfinger uses a similar method and I believe that later we ought to be able to add some machinery toalloc
to track allocations and later garbage collect.The text was updated successfully, but these errors were encountered: