Changeset 71136 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Feb 27, 2018 1:17:36 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 121023
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/NEMInternal.h
r71131 r71136 173 173 } UnmapPages; 174 174 } Hypercall; 175 /** I/O control buffer, we always use this for I/O controls. */ 176 union 177 { 178 uint8_t ab[64]; 179 HV_PARTITION_ID idPartition; 180 } uIoCtlBuf; 175 181 #endif 176 182 } NEMCPU; … … 232 238 /** The partition ID. */ 233 239 uint64_t idHvPartition; 240 /** I/O control context. */ 241 PSUPR0IOCTLCTX pIoCtlCtx; 242 /** Delta to add to convert a ring-0 pointer to a ring-3 one. */ 243 uintptr_t offRing3ConversionDelta; 244 /** Info about the VidGetHvPartitionId I/O control interface. */ 245 NEMWINIOCTL IoCtlGetHvPartitionId; 246 /** Info about the VidStartVirtualProcessor I/O control interface. */ 247 NEMWINIOCTL IoCtlStartVirtualProcessor; 248 /** Info about the VidStopVirtualProcessor I/O control interface. */ 249 NEMWINIOCTL IoCtlStopVirtualProcessor; 250 /** Info about the VidStopVirtualProcessor I/O control interface. */ 251 NEMWINIOCTL IoCtlMessageSlotHandleAndGetNext; 252 234 253 # else 235 254 uint32_t uDummy;
Note:
See TracChangeset
for help on using the changeset viewer.