Пример #1
0
 /// <summary>
 /// Creates a new stack walker object.
 /// </summary>
 /// <param name="factory">FrameFactory owning this walker</param>
 /// <param name="thread">Thread associated with the stackwalker</param>
 public MDbgV2StackWalker(MDbgFrameFactoryBase factory, MDbgThread thread)
     : base(factory, thread)
 {
 }
Пример #2
0
 /// <summary>
 /// Creates a new stack walker object.
 /// </summary>
 /// <param name="factory">FrameFactory owning this walker</param>
 /// <param name="thread">Thread associated with the stackwalker</param>
 public MDbgV2StackWalker(MDbgFrameFactoryBase factory, MDbgThread thread)
     : base(factory, thread)
 {
 }
Пример #3
0
 /// <summary>
 /// Creates a stack walker and associates the walker with the frame factory and a thread.
 /// </summary>
 /// <param name="factory">FrameFactory that created the stackwalker</param>
 /// <param name="thread">Thread associated the the stack walker</param>
 protected MDbgStackWalkerBase(MDbgFrameFactoryBase factory, MDbgThread thread)
 {
     m_thread = thread;
     m_factory = factory;
     m_logicalStopClock = factory.m_logicalStopClock;
 }
Пример #4
0
 /// <summary>
 /// Creates a stack walker and associates the walker with the frame factory and a thread.
 /// </summary>
 /// <param name="factory">FrameFactory that created the stackwalker</param>
 /// <param name="thread">Thread associated the the stack walker</param>
 protected MDbgStackWalkerBase(MDbgFrameFactoryBase factory, MDbgThread thread)
 {
     m_thread           = thread;
     m_factory          = factory;
     m_logicalStopClock = factory.m_logicalStopClock;
 }