Changeset 73460 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Aug 2, 2018 9:06:59 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/DBGFInternal.h
r73414 r73460 153 153 154 154 155 #ifdef IN_RING3 155 156 /** 156 157 * Guest OS digger instance. … … 167 168 uint8_t abData[16]; 168 169 } DBGFOS; 170 #endif 169 171 /** Pointer to guest OS digger instance. */ 170 typedef DBGFOS *PDBGFOS;172 typedef struct DBGFOS *PDBGFOS; 171 173 /** Pointer to const guest OS digger instance. */ 172 typedef DBGFOS const *PCDBGFOS;174 typedef struct DBGFOS const *PCDBGFOS; 173 175 174 176 … … 497 499 498 500 501 #ifdef IN_RING3 499 502 int dbgfR3AsInit(PUVM pUVM); 500 503 void dbgfR3AsTerm(PUVM pUVM); … … 506 509 void dbgfR3OSTermPart1(PUVM pUVM); 507 510 void dbgfR3OSTermPart2(PUVM pUVM); 511 int dbgfR3OSStackUnwindAssist(PUVM pUVM, VMCPUID idCpu, PDBGFSTACKFRAME pFrame, PRTDBGUNWINDSTATE pState, 512 PCCPUMCTX pInitialCtx, RTDBGAS hAs, uint64_t *puScratch); 508 513 int dbgfR3RegInit(PUVM pUVM); 509 514 void dbgfR3RegTerm(PUVM pUVM); … … 517 522 int dbgfR3BugCheckInit(PVM pVM); 518 523 519 520 521 #ifdef IN_RING3522 524 /** 523 525 * DBGF disassembler state (substate of DISSTATE). … … 541 543 char *pszOutput, uint32_t cbOutput, PDBGFDISSTATE pDisState); 542 544 545 #endif /* IN_RING3 */ 546 547 /** @} */ 548 543 549 #endif 544 545 /** @} */546 547 #endif
Note:
See TracChangeset
for help on using the changeset viewer.