Content deleted Content added
No edit summary |
|||
Line 21:
<pre>
initialize() =
tospace =
fromspace =
allocPtr =
scanPtr = whatever -- only used during collection
</pre>
Line 29:
<pre>
allocate(n) =
If allocPtr + n >
collect()
EndIf
If allocPtr + n >
fail “insufficient memory”
EndIf
|