Changeset 108437 in vbox for trunk/include/VBox
- Timestamp:
- Mar 4, 2025 12:02:36 PM (7 weeks ago)
- svn:sync-xref-src-repo-rev:
- 167811
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmgic.h
r108433 r108437 81 81 * 82 82 * @returns Strict VBox status code. 83 * @param pVCpu 84 * @param u32Reg 85 * @param pu64Value 83 * @param pVCpu The cross context virtual CPU structure. 84 * @param u32Reg The system register being read. 85 * @param pu64Value Where to store the read value. 86 86 */ 87 87 DECLR3CALLBACKMEMBER(VBOXSTRICTRC, pfnReadSysReg, (PVMCPUCC pVCpu, uint32_t u32Reg, uint64_t *pu64Value)); … … 91 91 * 92 92 * @returns Strict VBox status code. 93 * @param pVCpu 94 * @param u32Reg 95 * @param u64Value 93 * @param pVCpu The cross context virtual CPU structure. 94 * @param u32Reg The system register being written (IPRT system register identifier). 95 * @param u64Value The value to write. 96 96 */ 97 97 DECLR3CALLBACKMEMBER(VBOXSTRICTRC, pfnWriteSysReg, (PVMCPUCC pVCpu, uint32_t u32Reg, uint64_t u64Value)); … … 101 101 * 102 102 * @returns VBox status code. 103 * @param pVM The cross context virtual machine structure. 104 * @param uIntId The SPI ID (minus GIC_INTID_RANGE_SPI_START) to assert/de-assert. 105 * @param fAsserted Flag whether to mark the interrupt as asserted/de-asserted. 103 * @param pVM The cross context virtual machine structure. 104 * @param uSpiIntId The SPI ID (minus GIC_INTID_RANGE_SPI_START) to 105 * assert/de-assert. 106 * @param fAsserted Flag whether to mark the interrupt as asserted/de-asserted. 106 107 */ 107 108 DECLR3CALLBACKMEMBER(int, pfnSetSpi, (PVMCC pVM, uint32_t uSpiIntId, bool fAsserted)); … … 111 112 * 112 113 * @returns VBox status code. 113 * @param pVCpu The cross context virtual CPU structure. 114 * @param uIntId The PPI ID (minus GIC_INTID_RANGE_PPI_START) to assert/de-assert. 115 * @param fAsserted Flag whether to mark the interrupt as asserted/de-asserted. 114 * @param pVCpu The cross context virtual CPU structure. 115 * @param uPpiIntId The PPI ID (minus GIC_INTID_RANGE_PPI_START) to 116 * assert/de-assert. 117 * @param fAsserted Flag whether to mark the interrupt as asserted/de-asserted. 116 118 */ 117 119 DECLR3CALLBACKMEMBER(int, pfnSetPpi, (PVMCPUCC pVCpu, uint32_t uPpiIntId, bool fAsserted));
Note:
See TracChangeset
for help on using the changeset viewer.