Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
kasper93 committed Oct 28, 2023
1 parent b6d3ecf commit 0206627
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions osdep/timer-win32.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ static int64_t hires_res = MP_TIME_US_TO_NS(500);
// NtSetTimerResolution allows setting the timer resolution to less than 1 ms.
// Resolutions are specified in 100-ns units.
// If Set is TRUE, set the RequestedResolution. Otherwise, return to the previous resolution.
NTSTATUS NtSetTimerResolution(ULONG RequestedResolution, BOOLEAN Set, PULONG ActualResolution);
NTSTATUS NtQueryTimerResolution(PULONG MinimumResolution, PULONG MaximumResolution, PULONG ActualResolution);
NTSTATUS NTAPI NtSetTimerResolution(ULONG RequestedResolution, BOOLEAN Set, PULONG ActualResolution);
NTSTATUS NTAPI NtQueryTimerResolution(PULONG MinimumResolution, PULONG MaximumResolution, PULONG ActualResolution);

int64_t mp_start_hires_timers(int64_t wait_ns)
{
Expand Down

0 comments on commit 0206627

Please sign in to comment.