INTERFACE M3CheckGC; (* Copyright (C) 1991, Digital Equipment Corporation *) (* All rights reserved. *) (* See the file COPYRIGHT for a full description. *) PROCEDURE Notify(b: BOOLEAN) RAISES {}; (* If 'b=TRUE', notify about garbage collections to standard output. Notification is initially off. *) PROCEDURE CollectNow() RAISES {}; (* force a garbage collection *) END M3CheckGC.