| 84 | } |
| 85 | |
| 86 | void unexpectedExceptionWait(const std::string& message) override { |
| 87 | concurrency::Guard g(mutex_); |
| 88 | log_->append(EventLog::ET_CALL_UNEXPECTED_EXCEPTION_WAIT, 0, 0); |
| 89 | |
| 90 | blockUntilTriggered(); |
| 91 | |
| 92 | MyError e; |
| 93 | e.message = message; |
| 94 | throw e; |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * After prepareTriggeredCall() is invoked, calls to any of the *Wait() |