Parallel
bianchi.lst
Associated article: Memory Management With Macapp
Tags: Tools Parallel
_MEMORY MANAGEMENT WITH MACAPP_
by Curt Bianchi
[LISTING ONE]
Fragment 1:
aHandle := NewPermHandle(100);
anotherHandle := NewPermHandle(200);
Fragment 2:
VAR
wasPermanent: BOOLEAN;
wasPermanent := PermAllocation(TRUE); { Subsequent requests are permanent }
aHandle := NewHandle(100); { Both NewHandle calls are considered }
anotherHandle := NewHandle(200); { permanent because perm. flag is set }
...


