Skip to content

Commit

Permalink
Driver: forttmr: Remove unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
tnodir committed Feb 22, 2024
1 parent 6c0bd39 commit 962cc92
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/driver/forttmr.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@
#include "fortcb.h"
#include "fortdbg.h"

static UCHAR fort_timer_flags_exchange(PFORT_TIMER timer, UCHAR flags)
{
return InterlockedExchange8(&timer->flags, flags);
}

static UCHAR fort_timer_flags_set(PFORT_TIMER timer, UCHAR flags, BOOL on)
{
return on ? InterlockedOr8(&timer->flags, flags) : InterlockedAnd8(&timer->flags, ~flags);
Expand Down

0 comments on commit 962cc92

Please sign in to comment.