| 23 | } |
| 24 | |
| 25 | void TMemInfoSampler::Update() { |
| 26 | auto memInfo = NMemInfo::GetMemInfo(); |
| 27 | RSS.Update(memInfo.RSS); |
| 28 | VMS.Update(memInfo.VMS); |
| 29 | } |
| 30 | |
| 31 | TProxySampler::TProxySampler(TIntrusivePtr<TSharedSamplerBase> impl) |
| 32 | : Impl(impl) |
no test coverage detected