Changeset 32313 in vbox for trunk/src/VBox/Debugger
- Timestamp:
- Sep 8, 2010 11:46:16 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 65650
- Location:
- trunk/src/VBox/Debugger
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGCCommands.cpp
r32122 r32313 2112 2112 return DBGCCmdHlpFail(pCmdHlp, pCmd, "Missing file path.\n"); 2113 2113 2114 int rc = DBGFR3CoreWrite(pVM, 0,pszDumpPath);2114 int rc = DBGFR3CoreWrite(pVM, pszDumpPath); 2115 2115 if (RT_FAILURE(rc)) 2116 2116 return DBGCCmdHlpFail(pCmdHlp, pCmd, "DBGFR3WriteCore failed. rc=%Rrc\n", rc); -
trunk/src/VBox/Debugger/testcase/tstDBGCStubs.cpp
r32006 r32313 237 237 } 238 238 239 VMMR3DECL(int) DBGFR3CoreWrite(PVM pVM, VMCPUID idCpu,const char *pszDumpPath)239 VMMR3DECL(int) DBGFR3CoreWrite(PVM pVM, const char *pszDumpPath) 240 240 { 241 241 return VERR_INTERNAL_ERROR;
Note:
See TracChangeset
for help on using the changeset viewer.