RtlDeleteNoSplay function (ntddk.h)

The RtlDeleteNoSplay routine deletes the specified node from the splay link tree.

Syntax

NTSYSAPI VOID RtlDeleteNoSplay(
  [in]      PRTL_SPLAY_LINKS Links,
  [in, out] PRTL_SPLAY_LINKS *Root
);

Parameters

[in] Links

A pointer to the node to be deleted. The node must have been initialized by calling RtlInitializeSplayLinks.

[in, out] Root

A pointer to the caller's pointer to the root node of the splay link tree. The caller's pointer is updated after the node is deleted.

Return value

None

Remarks

Unlike RtlDelete, RtlDeleteNoSplay does not rebalance the splay link tree after the node is deleted.

Callers of the Rtl splay link routines are responsible for synchronizing access to the splay link tree. A fast mutex is the most efficient synchronization mechanism to use for this purpose.

Callers of RtlDeleteNoSplay must be running at IRQL <= DISPATCH_LEVEL if the splay link tree is nonpaged. Usually, callers are running at IRQL PASSIVE_LEVEL.

Requirements

Requirement Value
Target Platform Universal
Header ntddk.h (include Ntddk.h, Ntifs.h)
Library NtosKrnl.lib
DLL NtosKrnl.exe
IRQL See Remarks section.

See also

RtlDelete

RtlInitializeSplayLinks

RtlInsertAsLeftChild

RtlInsertAsRightChild

RtlSplay