-- BBDisableBreaks.mesa
-- Russ Atkinson, September 1, 1982 7:23 pm

BBDisableBreaks: CEDAR DEFINITIONS = BEGIN

DisableBreakPoints: PROC [inner: PROC];
-- calls the inner proc with breakpoints disabled for the current process
-- ABORTED or UNWIND will restore the old state

EnableBreakPoints: PROC [inner: PROC];
-- calls the inner proc with breakpoints enabled for the current process
-- ABORTED or UNWIND will restore the old state

Enabled: PROC RETURNS [BOOL];
-- test to see if the current process has breakpoints enabled

END.