Changeset 87130 in vbox for trunk/include/VBox
- Timestamp:
- Dec 27, 2020 7:32:53 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142030
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/err.h
r87107 r87130 357 357 /** The DBGF has no more free breakpoint owner handles. */ 358 358 #define VERR_DBGF_BP_OWNER_NO_MORE_HANDLES (-1238) 359 /** Reason for leaving RZ: Defer the owner callback invocation to Ring-3. */ 360 #define VINF_DBGF_R3_BP_OWNER_DEFER 1239 361 /** The breakpoint owner callback returned an invalid status code. */ 362 #define VERR_DBGF_BP_OWNER_CALLBACK_WRONG_STATUS (-1240) 359 363 /** @} */ 360 364 -
trunk/include/VBox/vmm/dbgf.h
r87107 r87130 982 982 * @retval VINF_SUCCESS if the breakpoint was handled and guest execution can resume. 983 983 * @retval VINF_DBGF_BP_HALT if guest execution should be stopped and the debugger should be invoked. 984 * @retval VINF_DBGF_R3_BP_OWNER_DEFER return to ring-3 and invoke the owner callback there again. 984 985 * 985 986 * @param pVM The cross-context VM structure pointer. … … 1045 1046 1046 1047 VMMR3DECL(int) DBGFR3BpEnum(PUVM pUVM, PFNDBGFBPENUM pfnCallback, void *pvUser); 1048 1049 VMMR3_INT_DECL(int) DBGFR3BpHit(PVM pVM, PVMCPU pVCpu); 1047 1050 /** @} */ 1048 1051 #endif /* !IN_RING3 */
Note:
See TracChangeset
for help on using the changeset viewer.