VirtualBox

Changeset 105538 in vbox for trunk/src/VBox/Debugger


Ignore:
Timestamp:
Jul 30, 2024 7:00:02 AM (4 months ago)
Author:
vboxsync
Message:

VBoxDbg: Added a ntrbtree command for dumping the red-black trees in Windows 8 and later. [fixes] bugref:10727

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Debugger/DBGCNtCommands.cpp

    r105537 r105538  
    5757typedef struct NT_RTL_BALANCED_NODE64
    5858{
    59     union
    60     {
    61         uint64_t Children[2];
    62         struct
    63         {
    64             uint64_t Left;
    65             uint64_t Right;
    66         };
    67     };
     59    uint64_t Left;
     60    uint64_t Right;
    6861
    6962    /**
     
    123116    {
    124117        if ((Root.Root & fAlignMask) == 0 && (Root.Min & fAlignMask) == 0)
    125             DBGCCmdHlpPrintf(pCmdHlp, "RB Root %DV: Empty\n");
     118            DBGCCmdHlpPrintf(pCmdHlp, "RB Root %DV: Empty\n", pRootAddr);
    126119        else
    127             DBGCCmdHlpPrintf(pCmdHlp, "RB Root %DV: Bogus root state!\n");
     120            DBGCCmdHlpPrintf(pCmdHlp, "RB Root %DV: Bogus root state!\n", pRootAddr);
    128121        return VINF_SUCCESS;
    129122    }
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette