mini-gc.red 511 B

123456789101112131415161718192021222324252627
  1. % MINI-RECLAIM.RED - RECLAIM stubs for TEST series
  2. on syslisp;
  3. External Wvar HeapLowerBound,
  4. HeapUpperBound,
  5. HeapLast;
  6. Procedure !%Reclaim();
  7. <<Prin2 '" *** Dummy !%RECLAIM: ";
  8. HeapInfo()>>;
  9. Procedure Reclaim();
  10. <<Prin2 '"*** Dummy RECLAIM: ";
  11. HeapInfo()>>;
  12. Procedure HeapInfo();
  13. << Prin1 ((HeapLast-HeapLowerBound)/AddressingUnitsPerItem);
  14. Prin2 '" Items used, ";
  15. Prin1 ((HeapUpperBound -HeapLast)/AddressingUnitsPerItem);
  16. Prin2t '" Items left.";
  17. 0>>;
  18. off syslisp;
  19. End;