// wdm.h
VOID ExReleaseFastMutexUnsafe(
PFAST_MUTEX FastMutex
);
View the official Windows Driver Kit DDI referenceNo description available.
The ExReleaseFastMutexUnsafe routine releases ownership of a fast mutex that was acquired by using ExAcquireFastMutexUnsafe.
FastMutex[in, out] A pointer to the fast mutex to be released.
It is a programming error to call ExReleaseFastMutexUnsafe with a pointer to a fast mutex that was acquired by using ExAcquireFastMutex or ExTryToAcquireFastMutex.
For more information about fast mutexes, see Fast Mutexes and Guarded Mutexes.