DebuggerFixup.mesa
Copyright Ó 1989, 1991 by Xerox Corporation. All rights reserved.
Carl Hauser, April 24, 1989 5:44:44 pm PDT
DebuggerFixup: CEDAR DEFINITIONS
~ BEGIN
InterestProc: TYPE ~ PROC [data: REF];
RegisterInterest: PROC [startDebugging, stopDebugging: InterestProc, data: REF];
Hack: call this to find out when the debugger is getting called for a Mesa uncaught error. The idea is you'll be able to do keyboard fixups etc. prior to going into the debugger which expects TTY style interaction.
Warning: call this and you'll forevermore be called whenever the debugger is entered (there's no way to undo the registration).
END.