Problem: 1615416

Title: (Segment -UnloadAllSegments) No need to unload in PowerPC

Received: Dec 24 1996 10:38AM


When running a fat binary application on a PowerPC, there is no need to load 68K code segments. This makes the applications memory footprint much larger than it needs to be. Please fix UnloadAllSegments so that it returns immediately if the application is running on a PowerPC.

Recommended Fix:

Change UnloadAllSegments so that it returns immediately if the application is running on a PowerPC. Change UnloadAllSegments to:

void UnloadAllSegments(Boolean andPurge)
{
    // We don't need to load and code resources if we are running on a PowerPC.
    #if qPowerPC
            return;
    #endif
    ...

Fix:

We don't support segment any more.