summaryrefslogtreecommitdiff
path: root/src/common/wall_clock.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* general: Convert source file copyright comments over to SPDXGravatar Morph2022-04-231-3/+2
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* common: wall_clock: Check precision against the emulated CPU and CNTFRQGravatar Morph2022-01-301-2/+2
| | | | In addition to requiring nanosecond precision, using the native clock requires that the hardware TSC has a precision greater than the emulated CPU and its clock counter.
* common: wall_clock: Utilize constants for ms, us, and ns ratiosGravatar Morph2022-01-301-0/+4
|
* audio_core: Make shadowing and unused parameters errorsGravatar Lioncash2020-12-031-3/+3
| | | | Moves the audio code closer to enabling warnings as errors in general.
* common/wall_clock: Add virtual destructorsGravatar ReinUsesLisp2020-09-301-0/+2
| | | | | | | | From -fsanitize=address, this code wasn't calling the proper destructor. Adding virtual destructors for each inherited class and the base class fixes this bug. While we are at it, mark the functions as final.
* common: Make use of [[nodiscard]] where applicableGravatar Lioncash2020-08-151-8/+8
| | | | | | Now that clang-format makes [[nodiscard]] attributes format sensibly, we can apply them to several functions within the common library to allow the compiler to complain about any misuses of the functions.
* HostTiming: Pause the hardware clock on pause.Gravatar Fernando Sahmkow2020-06-271-0/+2
|
* Common/Tests: Clang Format.Gravatar Fernando Sahmkow2020-06-181-2/+2
|
* Common: Refactor & Document Wall clock.Gravatar Fernando Sahmkow2020-06-181-1/+12
|
* Common: Implement WallClock Interface and implement a native clock for x64Gravatar Fernando Sahmkow2020-06-181-0/+40