コード例 #1
0
 public BreakpointHitEventArgs(NodeBreakpoint breakpoint, NodeThread thread)
 {
     _breakpoint = breakpoint;
     _thread = thread;
 }
コード例 #2
0
 public ExceptionRaisedEventArgs(NodeThread thread, NodeException exception, bool isUnhandled)
 {
     _thread      = thread;
     _exception   = exception;
     _isUnhandled = isUnhandled;
 }
コード例 #3
0
 public ExceptionRaisedEventArgs(NodeThread thread, NodeException exception, bool isUnhandled)
 {
     _thread = thread;
     _exception = exception;
     _isUnhandled = isUnhandled;
 }
コード例 #4
0
ファイル: AD7Thread.cs プロジェクト: happylancer/node-tools
 public AD7Thread(AD7Engine engine, NodeThread thread)
 {
     _engine = engine;
     _thread = thread;
 }
コード例 #5
0
ファイル: AD7Engine.cs プロジェクト: happylancer/node-tools
        private void OnThreadCreated(object sender, EventArgs e)
        {
            var nodeThread = new NodeThread(_process, _process.Id);
            var newThread = new AD7Thread(this, nodeThread);
            _threads = new Tuple<NodeThread, AD7Thread>(nodeThread, newThread);

            lock (_syncLock)
            {
                if (_programCreated)
                {
                    SendThreadStart(newThread);
                }
                else
                {
                    _startThread = newThread;
                }
            }
        }
コード例 #6
0
 public ThreadEventArgs(NodeThread thread)
 {
     _thread = thread;
 }
コード例 #7
0
 public ThreadEventArgs(NodeThread thread)
 {
     _thread = thread;
 }
コード例 #8
0
 public BreakpointHitEventArgs(NodeBreakpoint breakpoint, NodeThread thread)
 {
     _breakpoint = breakpoint;
     _thread     = thread;
 }