| 615 | } |
| 616 | |
| 617 | static void |
| 618 | adjustMemory() |
| 619 | { |
| 620 | Size grow; |
| 621 | |
| 622 | memActivity = 0; |
| 623 | |
| 624 | if (MaxMem(&grow) < pBytes->memWarning) |
| 625 | note(noErr, alidNote, "\pWarning: Memory is running low"); |
| 626 | |
| 627 | (void) ResrvMem((Size) FreeMem()); /* move all handles high */ |
| 628 | } |
| 629 | |
| 630 | /* show memory stats: FreeMem, MaxBlock, PurgeSpace, and StackSpace */ |
| 631 | static void |
no test coverage detected