This interface is sent by the debug engine (DE) to the session debug manager (SDM) when a thread is created in a program being debugged. (http://msdn.microsoft.com/en-ca/library/bb161327.aspx)
Inheritance: AD7AsynchronousEvent, IDebugThreadCreateEvent2
Ejemplo n.º 1
0
        /// <summary>
        /// Send an event to notify the SDM that this thread was created.
        /// </summary>
        /// <param name="debuggedThread"> The new thread running in a program. </param>
        public void OnThreadStart(AD7Thread debuggedThread)
        {
            AD7ThreadCreateEvent eventObject = new AD7ThreadCreateEvent();

            Send(eventObject, AD7ThreadCreateEvent.IID, debuggedThread);
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Send an event to notify the SDM that this thread was created.
 /// </summary>
 /// <param name="debuggedThread"> The new thread running in a program. </param>
 public void OnThreadStart(AD7Thread debuggedThread)
 {
     AD7ThreadCreateEvent eventObject = new AD7ThreadCreateEvent();
     Send(eventObject, AD7ThreadCreateEvent.IID, debuggedThread);
 }