Mono.Debugger.Backend.SingleSteppingEngine.OperationInitAfterFork.DoProcessEvent C# (CSharp) Method

DoProcessEvent() protected method

protected DoProcessEvent ( Inferior cevent, TargetEventArgs &args ) : EventResult
cevent Inferior
args TargetEventArgs
return EventResult
            protected override EventResult DoProcessEvent(Inferior.ChildEvent cevent,
							       out TargetEventArgs args)
            {
                Report.Debug (DebugFlags.SSE,
                      "{0} init after fork ({1})", sse,
                      DebuggerWaitHandle.CurrentThread);

                sse.Process.BreakpointManager.InitializeAfterFork (inferior);

                args = null;
                return EventResult.AskParent;
            }
SingleSteppingEngine.OperationInitAfterFork