Example #1
0
 internal void PauseEvaluation()
 {
     m_barrier.Wait();
 }
Example #2
0
 /// <summary>
 ///     A barrier for waiting until the debug session has been initialized
 ///     (the <code cref="Attach"/> request has been received).
 /// </summary>
 public void WaitSessionInitialized()
 {
     m_sessionInitializedBarrier.Wait();
 }
Example #3
0
 /// <summary>Calls <see cref="Barrier.Wait"/> on the barier associated with this thread.</summary>
 public void PauseEvaluation()
 {
     m_barrier.Wait();
 }