// wdm.h
VOID KeSrcuFree(
[in] PKE_SRCU Rcu
);
View the official Windows Driver Kit DDI referenceNo description available.
The KeSrcuFree routine performs cleanup of a Sleepable Read-Copy-Update (SRCU) partition and deallocates its storage.
Rcu [in]A pointer to the SRCU instance that was previously allocated by KeSrcuAllocate.
KeSrcuFree performs cleanup and deallocates an SRCU partition that was previously created with KeSrcuAllocate. This function ensures that all pending operations are completed before freeing the resources.
Don't access the SRCU instance after calling this function.