File #2: Programming:ETO Tools:MacApp:MacApp 2.0.1:MacApp 2.0.1 - HD Ready:Libraries:UMacApp.TApplication.p
Extra lines in 1st before 3128 in 2nd (File "HardDisk:MPW:MacApp:Libraries:UMacApp.TApplication.p"; Line 3128; File "Programming:ETO Tools:MacApp:MacApp 2.0.1:MacApp 2.0.1 - HD Ready:Libraries:UMacApp.TApplication.p"; Line Δ3128)
File #2: Programming:ETO Tools:MacApp:MacApp 2.0.1:MacApp 2.0.1 - HD Ready:Libraries:UMemory.inc1.p
Nonmatching lines (File "HardDisk:MPW:MacApp:Libraries:UMemory.inc1.p"; Line 16:17; File "Programming:ETO Tools:MacApp:MacApp 2.0.1:MacApp 2.0.1 - HD Ready:Libraries:UMemory.inc1.p"; Line 16)
16 PROCEDURE BuildCodeReserve(allocLim: Size;
17 fromGZ: BOOLEAN);
16 FUNCTION GrowZoneProc(needed: Size): LONGINT;
Nonmatching lines (File "HardDisk:MPW:MacApp:Libraries:UMemory.inc1.p"; Line 20; File "Programming:ETO Tools:MacApp:MacApp 2.0.1:MacApp 2.0.1 - HD Ready:Libraries:UMemory.inc1.p"; Line 19:20)
20 FUNCTION HandleIsEligible(h: Handle): BOOLEAN;
19 PROCEDURE BuildCodeReserve(allocLim: Size;
20 fromGZ: BOOLEAN);
Extra lines in 2nd before 23 in 1st (File "HardDisk:MPW:MacApp:Libraries:UMemory.inc1.p"; Line Δ23; File "Programming:ETO Tools:MacApp:MacApp 2.0.1:MacApp 2.0.1 - HD Ready:Libraries:UMemory.inc1.p"; Line 23:25)
23 FUNCTION HandleIsEligible(h: Handle): BOOLEAN;
24 FORWARD;
25
Extra lines in 1st before 51 in 2nd (File "HardDisk:MPW:MacApp:Libraries:UMemory.inc1.p"; Line 48:50; File "Programming:ETO Tools:MacApp:MacApp 2.0.1:MacApp 2.0.1 - HD Ready:Libraries:UMemory.inc1.p"; Line Δ51)
48 FUNCTION CallAppGZ (needed: LONGINT; routine: ProcPtr): LONGINT;
Extra lines in 1st before 712 in 2nd (File "HardDisk:MPW:MacApp:Libraries:UMemory.inc1.p"; Line 712; File "Programming:ETO Tools:MacApp:MacApp 2.0.1:MacApp 2.0.1 - HD Ready:Libraries:UMemory.inc1.p"; Line Δ712)
712 gAppGrowZone := NIL;
Nonmatching lines (File "HardDisk:MPW:MacApp:Libraries:UMemory.inc1.p"; Line 899:909; File "Programming:ETO Tools:MacApp:MacApp 2.0.1:MacApp 2.0.1 - HD Ready:Libraries:UMemory.inc1.p"; Line 898:912)
899 IF codeSize + reserveSize + 8 > pSzCodeReserve THEN
900 BEGIN { reserve is too big }
901 reserveSize := pSzCodeReserve - codeSize - 8;
902 IF reserveSize > 0 THEN
903 SetHandleSize (pCodeReserve, reserveSize)
904 ELSE
905 BEGIN
906 EmptyHandle (pCodeReserve);
907 pReserveExists := FALSE;
908 END;
909 result := 1;
898
899 { the following test is an optimization to avoid calling
900 BuildCodeReserve if there is no hope of reducing
901 the code reserve handle }
902 IF codeSize + reserveSize + 8 > pSzCodeReserve THEN
903 BEGIN { reserve is too big }
904 pReserveExists := FALSE;
905 { this should lower the code reserve }
906 BuildCodeReserve(reserveSize, TRUE);
907
908 { see if we succeeded in freeing some memory }
909 IF IsHandlePurged(pCodeReserve) THEN
910 result := 1
911 ELSE IF GetHandleSize(pCodeReserve) < reserveSize THEN
912 result := 1;
Extra lines in 1st before 935 in 2nd (File "HardDisk:MPW:MacApp:Libraries:UMemory.inc1.p"; Line 932:933; File "Programming:ETO Tools:MacApp:MacApp 2.0.1:MacApp 2.0.1 - HD Ready:Libraries:UMemory.inc1.p"; Line Δ935)
932
933 IF (result = 0) & (gAppGrowZone <> NIL) THEN result := CallAppGZ (needed, gAppGrowZone);