| 22 | } |
| 23 | |
| 24 | std::shared_ptr<HANDLE> PoolParty::GetTargetThreadPoolIoCompletionHandle() const |
| 25 | { |
| 26 | auto p_hIoCompletion = HijackIoCompletionProcessHandle(m_p_hTargetPid); |
| 27 | BOOST_LOG_TRIVIAL(info) << boost::format("Hijacked I/O completion handle from the target process: %x") % *p_hIoCompletion; |
| 28 | return p_hIoCompletion; |
| 29 | } |
| 30 | |
| 31 | std::shared_ptr<HANDLE> PoolParty::GetTargetThreadPoolTimerHandle() const |
| 32 | { |
no test coverage detected