VirtualBox

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


Ignore:
Timestamp:
Feb 15, 2020 2:23:23 AM (5 years ago)
Author:
vboxsync
Message:

DBGC/lm: Dump the UUID and timestamp of images in verbose mode.

File:
1 edited

Legend:

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

    r82968 r83082  
    3535#include <iprt/assert.h>
    3636#include <iprt/ctype.h>
     37#include <iprt/time.h>
    3738
    3839#include <stdlib.h>
     
    61196120                        if (fVerbose && pszDbgFile)
    61206121                            DBGCCmdHlpPrintf(pCmdHlp, "    Debug file:  %s\n", pszDbgFile);
     6122                        if (fVerbose)
     6123                        {
     6124                            char szTmp[64];
     6125                            RTTIMESPEC TimeSpec;
     6126                            int64_t    secTs = 0;
     6127                            if (RT_SUCCESS(RTDbgModImageQueryProp(hMod, RTLDRPROP_TIMESTAMP_SECONDS, &secTs, sizeof(secTs), NULL)))
     6128                                DBGCCmdHlpPrintf(pCmdHlp, "    Timestamp:   %08RX64  %s\n", secTs,
     6129                                                 RTTimeSpecToString(RTTimeSpecSetSeconds(&TimeSpec, secTs), szTmp, sizeof(szTmp)));
     6130                            RTUUID Uuid;
     6131                            if (RT_SUCCESS(RTDbgModImageQueryProp(hMod, RTLDRPROP_UUID, &Uuid, sizeof(Uuid), NULL)))
     6132                                DBGCCmdHlpPrintf(pCmdHlp, "    UUID:        %RTuuid\n", &Uuid);
     6133                        }
    61216134
    61226135                        if (fMappings)
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