| 538 | } |
| 539 | |
| 540 | std::shared_ptr<Processor> App::getCurrentWindowProc(Thread::ThreadID tid) { |
| 541 | std::lock_guard<std::mutex> lock(m_processorsMtx); |
| 542 | return getCurrentWindowProcInternal(tid); |
| 543 | } |
| 544 | |
| 545 | std::shared_ptr<Processor> App::getCurrentWindowProcInternal(Thread::ThreadID tid) { |
| 546 | auto it = m_processors.find((uint64)tid); |
no outgoing calls
no test coverage detected