Changeset 45993 in vbox
- Timestamp:
- May 12, 2013 7:12:25 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 85654
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/dbgf.h
r45794 r45993 656 656 657 657 /** @} */ 658 659 VMMR3DECL(RTDBGCFG) DBGFR3AsGetConfig(PUVM pUVM); 658 660 659 661 VMMR3DECL(int) DBGFR3AsAdd(PUVM pUVM, RTDBGAS hDbgAs, RTPROCESS ProcId); -
trunk/src/VBox/VMM/VMMR3/DBGFAddrSpace.cpp
r45987 r45993 287 287 /** @todo */ 288 288 NOREF(pUVM); NOREF(offDelta); 289 } 290 291 292 /** 293 * Gets the IPRT debugging configuration handle (no refs retained). 294 * 295 * @returns Config handle or NIL_RTDBGCFG. 296 * @param pUVM The user mode VM handle. 297 */ 298 VMMR3DECL(RTDBGCFG) DBGFR3AsGetConfig(PUVM pUVM) 299 { 300 UVM_ASSERT_VALID_EXT_RETURN(pUVM, NIL_RTDBGCFG); 301 return pUVM->dbgf.s.hDbgCfg; 289 302 } 290 303
Note:
See TracChangeset
for help on using the changeset viewer.