| 417 | } |
| 418 | } |
| 419 | static void _runSessionEnd(const Session* session) { |
| 420 | auto& rt = session->getRuntime(); |
| 421 | for (auto& iter : rt.first) { |
| 422 | iter.second->onConcurrencyEnd(); |
| 423 | } |
| 424 | } |
| 425 | |
| 426 | ErrorCode Interpreter::runSession(Session* session) const { |
| 427 | std::unique_lock<std::mutex> _l(mNet->lock); |
no test coverage detected