| 310 | } |
| 311 | |
| 312 | void TRemoteQueryProcessor::IncLastCount(int compId) { |
| 313 | Y_ASSERT(compId >= 0 && compId < LastCounts.ysize()); |
| 314 | if (compId >= 0 && compId < LastCounts.ysize()) |
| 315 | AtomicAdd(LastCounts[compId].Counter, 1); |
| 316 | } |
| 317 | |
| 318 | void TRemoteQueryProcessor::TInitCmd::NewRequest(TRemoteQueryProcessor* p, TNetworkRequest* req) { |
| 319 | CHROMIUM_TRACE_FUNCTION(); |
no test coverage detected