KeSrcuFree - NtDoc

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

VOID KeSrcuFree(
  [in] PKE_SRCU Rcu
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

Description

The KeSrcuFree routine performs cleanup of a Sleepable Read-Copy-Update (SRCU) partition and deallocates its storage.

Parameters

Rcu [in]

A pointer to the SRCU instance that was previously allocated by KeSrcuAllocate.

Remarks

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.

See also

KeSrcuAllocate

KeSrcuReadLock

KeSrcuReadUnlock

KeSrcuSynchronize