* After prepareTriggeredCall() is invoked, calls to any of the *Wait() * functions won't return until triggerPendingCalls() is invoked * * This has to be a separate function invoked by the main test thread * in order to to avoid race conditions. */
| 102 | * in order to to avoid race conditions. |
| 103 | */ |
| 104 | void prepareTriggeredCall() { |
| 105 | concurrency::Guard g(mutex_); |
| 106 | wait_ = true; |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * Wake up all calls waiting in blockUntilTriggered() |
no outgoing calls
no test coverage detected