Changeset 83082 in vbox for trunk/src/VBox/Debugger
- Timestamp:
- Feb 15, 2020 2:23:23 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGCEmulateCodeView.cpp
r82968 r83082 35 35 #include <iprt/assert.h> 36 36 #include <iprt/ctype.h> 37 #include <iprt/time.h> 37 38 38 39 #include <stdlib.h> … … 6119 6120 if (fVerbose && pszDbgFile) 6120 6121 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 } 6121 6134 6122 6135 if (fMappings)
Note:
See TracChangeset
for help on using the changeset viewer.