Ejemplo n.º 1
0
 public ThreadStackInfo(CrashDebuggerInfo aCrashDebugger, DThread aThread, TType aType)
     : base(aCrashDebugger)
 {
     iType   = aType;
     iThread = aThread;
     iData   = new ThreadStackData(aCrashDebugger, this);
 }
Ejemplo n.º 2
0
 public ThreadStackBuilder(ThreadStackData aInfo)
 {
     iInfo        = aInfo;
     this.DoWork += new System.ComponentModel.DoWorkEventHandler(ThreadStackBuilder_DoWork);
 }