| 23 | |
| 24 | #ifdef _win_ |
| 25 | TDuration FiletimeToDuration(const FILETIME& ft) { |
| 26 | union { |
| 27 | ui64 ft_scalar; |
| 28 | FILETIME ft_struct; |
| 29 | } nt_time; |
| 30 | nt_time.ft_struct = ft; |
| 31 | return TDuration::MicroSeconds(nt_time.ft_scalar / 10); |
| 32 | } |
| 33 | #endif |
| 34 | |
| 35 | size_t TRusage::GetCurrentRSS() { |