Changeset 89912 in vbox for trunk/include
- Timestamp:
- Jun 25, 2021 11:24:49 AM (4 years ago)
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/dbgf.h
r89682 r89912 78 78 79 79 /** 80 * Request buffer for DBGFR0BpInitReqHandler / VMMR0_DO_DBGF_BP_INIT. 81 * @see DBGFR0BpInitReqHandler. 80 * Request buffer for DBGFR0BpInitReqHandler / VMMR0_DO_DBGF_BP_INIT and 81 * DBGFR0BpPortIoInitReqHandler / VMMR0_DO_DBGF_BP_PORTIO_INIT. 82 * @see DBGFR0BpInitReqHandler, DBGFR0BpPortIoInitReqHandler. 82 83 */ 83 84 typedef struct DBGFBPINITREQ … … 92 93 93 94 VMMR0_INT_DECL(int) DBGFR0BpInitReqHandler(PGVM pGVM, PDBGFBPINITREQ pReq); 95 VMMR0_INT_DECL(int) DBGFR0BpPortIoInitReqHandler(PGVM pGVM, PDBGFBPINITREQ pReq); 94 96 95 97 /** … … 1019 1021 VMMR3DECL(int) DBGFR3BpSetPortIoEx(PUVM pUVM, DBGFBPOWNER hOwner, void *pvUser, 1020 1022 RTIOPORT uPort, RTIOPORT cPorts, uint32_t fAccess, 1021 uint 64_t iHitTrigger, uint64_t iHitDisable, PDBGFBP phBp);1023 uint32_t fFlags, uint64_t iHitTrigger, uint64_t iHitDisable, PDBGFBP phBp); 1022 1024 VMMR3DECL(int) DBGFR3BpSetMmio(PUVM pUVM, RTGCPHYS GCPhys, uint32_t cb, uint32_t fAccess, 1023 1025 uint64_t iHitTrigger, uint64_t iHitDisable, PDBGFBP phBp); -
trunk/include/VBox/vmm/vmm.h
r87792 r89912 436 436 /** Call DBGFR0BpOwnerInitReqHandler(). */ 437 437 VMMR0_DO_DBGF_BP_OWNER_INIT, 438 /** Call DBGFR0BpPortIoInitReqHandler(). */ 439 VMMR0_DO_DBGF_BP_PORTIO_INIT, 438 440 439 441 /** Grow a timer queue. */
Note:
See TracChangeset
for help on using the changeset viewer.