KfReleaseSpinLock - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdm.h

VOID KfReleaseSpinLock(
  PKSPIN_LOCK SpinLock,
  KIRQL       NewIrql
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdm-kfreleasespinlock)

Description

The KfReleaseSpinLock routine releases a spin lock and restores the original IRQL at which the caller was running.

Parameters

SpinLock

Pointer to a KSPIN_LOCK spin lock for which the caller provides the storage.

NewIrql

Specifies the KIRQL value saved from the preceding call to KfAcquireSpinLock.

Remarks

For more information about spin locks, see Spin Locks.

See also