Mono.Debugger.AddressBreakpoint.Insert C# (CSharp) Method

Insert() private method

private Insert ( Inferior inferior ) : void
inferior Mono.Debugger.Backend.Inferior
return void
        internal void Insert(Inferior inferior)
        {
            if (handle == null)
                handle = new AddressBreakpointHandle (this, address);

            handle.Insert (inferior);
        }

Usage Example

Exemplo n.º 1
0
        protected MonoThreadManager(Process process, Inferior inferior,
					     MonoDebuggerInfo debugger_info)
        {
            this.process = process;
            this.debugger_info = debugger_info;

            inferior.WriteInteger (debugger_info.UsingMonoDebugger, 1);

            notification_bpt = new InitializeBreakpoint (this, debugger_info.Initialize);
            notification_bpt.Insert (inferior);
        }
All Usage Examples Of Mono.Debugger.AddressBreakpoint::Insert