// video.h
VIDEOPORT_API VOID VideoPortReleaseSpinLock(
[in] PVOID HwDeviceExtension,
[in, out] PSPIN_LOCK SpinLock,
[in] UCHAR NewIrql
);
View the official Windows Driver Kit DDI referenceNo description available.
The VideoPortReleaseSpinLock function releases ownership of a given spin lock and restores the original IRQL at which the caller was running.
HwDeviceExtension [in]Pointer to the miniport driver's device extension.
SpinLock [in, out]Pointer to a memory location that contains the spin lock to be released.
NewIrql [in]Specifies the IRQL to be restored.
None
This call is the inverse of VideoPortAcquireSpinLock. The NewIrql value must be the same as the value pointed to by OldIrql when VideoPortAcquireSpinLock returned.
Callers of VideoPortReleaseSpinLock must be running at IRQL = DISPATCH_LEVEL. On return from this routine, IRQL is restored to the NewIrql value.