├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── release.yml ├── .gitignore ├── LICENSE ├── MeasureSleep ├── MeasureSleep.cpp ├── MeasureSleep.vcxproj ├── MeasureSleep.vcxproj.filters └── MeasureSleep.vcxproj.user ├── README.md ├── SetTimerResolution ├── SetTimerResolution.cpp ├── SetTimerResolution.vcxproj ├── SetTimerResolution.vcxproj.filters └── SetTimerResolution.vcxproj.user ├── TimerResolution.sln ├── assets └── img │ └── results-example.png ├── micro-adjust-benchmark.ps1 └── vcpkg.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/TimerResolution/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/TimerResolution/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/TimerResolution/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/TimerResolution/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/TimerResolution/HEAD/LICENSE -------------------------------------------------------------------------------- /MeasureSleep/MeasureSleep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/TimerResolution/HEAD/MeasureSleep/MeasureSleep.cpp -------------------------------------------------------------------------------- /MeasureSleep/MeasureSleep.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/TimerResolution/HEAD/MeasureSleep/MeasureSleep.vcxproj -------------------------------------------------------------------------------- /MeasureSleep/MeasureSleep.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/TimerResolution/HEAD/MeasureSleep/MeasureSleep.vcxproj.filters -------------------------------------------------------------------------------- /MeasureSleep/MeasureSleep.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/TimerResolution/HEAD/MeasureSleep/MeasureSleep.vcxproj.user -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/TimerResolution/HEAD/README.md -------------------------------------------------------------------------------- /SetTimerResolution/SetTimerResolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/TimerResolution/HEAD/SetTimerResolution/SetTimerResolution.cpp -------------------------------------------------------------------------------- /SetTimerResolution/SetTimerResolution.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/TimerResolution/HEAD/SetTimerResolution/SetTimerResolution.vcxproj -------------------------------------------------------------------------------- /SetTimerResolution/SetTimerResolution.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/TimerResolution/HEAD/SetTimerResolution/SetTimerResolution.vcxproj.filters -------------------------------------------------------------------------------- /SetTimerResolution/SetTimerResolution.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/TimerResolution/HEAD/SetTimerResolution/SetTimerResolution.vcxproj.user -------------------------------------------------------------------------------- /TimerResolution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/TimerResolution/HEAD/TimerResolution.sln -------------------------------------------------------------------------------- /assets/img/results-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/TimerResolution/HEAD/assets/img/results-example.png -------------------------------------------------------------------------------- /micro-adjust-benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/TimerResolution/HEAD/micro-adjust-benchmark.ps1 -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/TimerResolution/HEAD/vcpkg.json --------------------------------------------------------------------------------