system-gc.red 464 B

1234567891011121314151617181920212223242526272829
  1. %
  2. % SYSTEM-GC.RED - System dependent before and after GC hooks
  3. %
  4. % Author: Eric Benson
  5. % Symbolic Computation Group
  6. % Computer Science Dept.
  7. % University of Utah
  8. % Date: 5 March 1982
  9. % Copyright (c) 1982 University of Utah
  10. %
  11. % Do nothing on the Dec-20
  12. on Syslisp;
  13. CompileTime <<
  14. syslsp smacro procedure BeforeGCSystemHook();
  15. NIL;
  16. syslsp smacro procedure AfterGCSystemHook();
  17. NIL;
  18. >>;
  19. off Syslisp;
  20. END;