-- TexDebugDefs.mesa

-- last written by Doug Wyatt, December 18, 1979  10:58 PM

DIRECTORY
	TexMemDefs: FROM "TexMemDefs",
	TexNodeDefs: FROM "TexNodeDefs";

TexDebugDefs: DEFINITIONS =
BEGIN

DEBUG: BOOLEAN=TRUE; -- controls conditional compilation of debugging code

-- show memory allocation statistics
ShowMem: PROCEDURE[string: STRING];
ShowZone: PROCEDURE[zone: TexMemDefs.ZonePtr, string: STRING];

-- show statistics for a node and everything it contains
ShowNodeStatistics: PROCEDURE[p: TexNodeDefs.NodePtr, string: STRING];

END.