RtlIsLeftChild - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTRTL_H

#define RtlIsLeftChild(Links) ((RtlLeftChild(RtlParent(Links)) == (PRTL_SPLAY_LINKS)(Links)))

#endif

View code on GitHub
// ntddk.h

void RtlIsLeftChild(
  [in] Links
);
View the official Windows Driver Kit DDI reference

NtDoc

This macro is documented in Windows Driver Kit.

Windows Driver Kit DDI reference (nf-ntddk-rtlisleftchild)

RtlIsLeftChild macro

Description

The RtlIsLeftChild routine determines whether a given splay link is the left child of a node in a splay link tree.

Parameters

Pointer to the node. The node must have been initialized by calling RtlInitializeSplayLinks.

Remarks

RtlIsLeftChild returns TRUE if the given node at Links is the left child of its parent node, FALSE otherwise.

The given node at Links must have a parent node in the tree. A caller can determine whether this node has a parent with RtlIsRoot. If RtlIsRoot returns FALSE, Links is a valid parameter to RtlIsLeftChild.

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 RtlIsLeftChild can be running at IRQL <= DISPATCH_LEVEL if the splay link tree is nonpaged. Usually, callers are running at IRQL PASSIVE_LEVEL.

See also

RtlInitializeSplayLinks

RtlIsRightChild

RtlIsRoot

RtlLeftChild

RtlSplay