OnThreadCreated() protected method

protected OnThreadCreated ( Thread thread ) : void
thread Thread
return void
コード例 #1
0
ファイル: Interpreter.cs プロジェクト: tralivali1234/debugger
 public void thread_created(Debugger debugger, Thread thread)
 {
     if (!thread.Process.IsManaged ||
         ((thread.ThreadFlags & Thread.Flags.Daemon) == 0))
     {
         interpreter.OnThreadCreated(thread);
     }
 }