[LIBS] Use KeClearEvent instead of KeResetEvent where the previous state is not needed.

This commit is contained in:
Thomas Faber 2017-12-30 11:46:57 +01:00
parent 2cb0c129a6
commit 008e035b7e
No known key found for this signature in database
GPG key ID: 076E7C3D44720826
3 changed files with 4 additions and 4 deletions

View file

@ -7894,7 +7894,7 @@ RxScavengerTimerRoutine(
{
/* Done */
Scavenger->State = RDBSS_SCAVENGER_ACTIVE;
KeResetEvent(&Scavenger->ScavengeEvent);
KeClearEvent(&Scavenger->ScavengeEvent);
/* Scavenger the entries */
RxReleaseScavengerMutex();
@ -7982,7 +7982,7 @@ RxSpinUpRequestsDispatcher(
{
ListEntry = &RxDispatcher->SpinUpRequests;
}
KeResetEvent(&RxDispatcher->SpinUpRequestsEvent);
KeClearEvent(&RxDispatcher->SpinUpRequestsEvent);
KeReleaseSpinLock(&RxDispatcher->SpinUpRequestsLock, OldIrql);
while (ListEntry != &RxDispatcher->SpinUpRequests)