Exemplo n.º 1
0
        private HandlerAction DoThreadStartEvent(ThreadStartEvent e)
        {
            NSApplication.sharedApplication().BeginInvoke(() => m_debugger.OnThreadStart(e));

            return HandlerAction.Resume;
        }
Exemplo n.º 2
0
 internal void OnThreadStart(ThreadStartEvent e)
 {
     if (DebuggerWindows.WriteEvents)
         m_transcript.WriteLine(Output.Normal, "Thread '{0}' started", ThreadsController.GetThreadName(e.Thread));
 }