Mono.Debugger.Backend.DarwinOperatingSystem.DynlinkBreakpoint.BreakpointHandler C# (CSharp) Method

BreakpointHandler() private method

private BreakpointHandler ( Inferior inferior, bool &remain_stopped ) : bool
inferior Inferior
remain_stopped bool
return bool

            internal override bool BreakpointHandler(Inferior inferior,
								  out bool remain_stopped)
            {
                OS.do_update_shlib_info (inferior);
                if (!Instruction.InterpretInstruction (inferior))
                    throw new InternalError ();
                remain_stopped = false;
                return true;
            }