Changeset 73412 in vbox for trunk/src/VBox/Runtime/include
- Timestamp:
- Jul 31, 2018 4:50:04 PM (7 years ago)
- Location:
- trunk/src/VBox/Runtime/include/internal
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/dbgmod.h
r73401 r73412 541 541 typedef struct RTDBGMODDEFERRED 542 542 { 543 /** Magic value (RTDBGMODDEFERRED_MAGIC). */ 544 uint32_t u32Magic; 545 /** Reference counter. */ 546 uint32_t volatile cRefs; 543 547 /** The image size. 544 548 * Deferred loading is almost pointless without knowing the module size, as 545 549 * it cannot be mapped (correctly) without it. */ 546 550 RTUINTPTR cbImage; 547 /** Reference counter. */548 uint32_t volatile cRefs;549 /** Magic value for debug purposes. */550 uint32_t uMagic;551 551 /** The configuration instance (referenced), can be NIL. */ 552 552 RTDBGCFG hDbgCfg; -
trunk/src/VBox/Runtime/include/internal/magics.h
r71492 r73412 41 41 /** Magic number for RTDBGMODINT::u32Magic. (Keith Jarrett) */ 42 42 #define RTDBGMOD_MAGIC UINT32_C(0x19450508) 43 /** Magic number for RTDBGMODDEFERRED::u32Magic. (Chet Baker) */ 44 #define RTDBGMODDEFERRED_MAGIC UINT32_C(0x19291223) 45 /** Magic number for RTDBGMODDEFERRED::u32Magic after release. */ 46 #define RTDBGMODDEFERRED_MAGIC_DEAD UINT32_C(0x19880513) 47 /** Magic number for RTDBGMODLDR::u32Magic. (Gerry Mulligan) */ 48 #define RTDBGMODLDR_MAGIC UINT32_C(0x19270406) 49 /** Magic number for RTDBGMODLDR::u32Magic after close. */ 50 #define RTDBGMODLDR_MAGIC_DEAD UINT32_C(0x19960120) 43 51 /** Magic number for RTDBGMODVTIMG::u32Magic. (Jack DeJohnette) */ 44 52 #define RTDBGMODVTDBG_MAGIC UINT32_C(0x19420809)
Note:
See TracChangeset
for help on using the changeset viewer.