summaryrefslogtreecommitdiffstats
path: root/src/common/x64/cpu_wait.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* x64: Simplify RDTSC on non-MSVC compilersMorph2023-03-271-8/+5
| | | | Co-Authored-By: liamwhite <liamwhite@users.noreply.github.com>
* x64: Add MicroSleepMorph2023-03-271-0/+72
MicroSleep allows the processor to pause for a "short" amount of time (in the microsecond range). This is useful for spin-waiting that does not require nanosecond precision. This uses the new TPAUSE instruction introduced on Intel's newest processors as part of the waitpkg instructions. For CPUs that do not support waitpkg instructions, this is equivalent to yield(). Co-Authored-By: liamwhite <liamwhite@users.noreply.github.com>