#pragma once #ifndef CLOCK_INL_H_ #error "Direct inclusion of this file is not allowed, include clock.h" // For the sake of sane code completion. #include "clock.h" #endif #ifdef _WIN32 # include #else # include #endif namespace NYT { //////////////////////////////////////////////////////////////////////////////// inline TCpuInstant GetCpuInstant() { return __rdtsc(); } //////////////////////////////////////////////////////////////////////////////// } // namespace NYT