Changeset 90639 in vbox for trunk/src/VBox/Devices/VMMDev
- Timestamp:
- Aug 11, 2021 9:41:42 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 146251
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/VMMDev/VMMDevState.h
r90638 r90639 127 127 * PDMDEVINS structure. */ 128 128 PDMCRITSECT CritSect; 129 #if !defined(VBOX_WITHOUT_TESTING_FEATURES) || defined(DOXYGEN_RUNNING) 130 /** Read write critical section of lock testing. 131 * @remarks At the beginning to satisfy 64 byte alignment requirement. */ 132 PDMCRITSECTRW CritSectRw; 133 #endif 129 134 130 135 /** mouse capabilities of host and guest */ … … 366 371 /** Handle for the MMIO region used by the testing component. */ 367 372 IOMMMIOHANDLE hMmioTesting; 368 /** Read write critical section of lock testing. */369 PDMCRITSECTRW CritSectRw;370 373 #endif /* !VBOX_WITHOUT_TESTING_FEATURES || DOXYGEN_RUNNING */ 371 374 /** @} */ … … 393 396 #ifndef VBOX_WITHOUT_TESTING_FEATURES 394 397 AssertCompileMemberAlignment(VMMDEV, TestingData.Value.u64Value, 8); 395 AssertCompileMemberAlignment(VMMDEV, CritSectRw, 32);398 AssertCompileMemberAlignment(VMMDEV, CritSectRw, 64); 396 399 #endif 397 400
Note:
See TracChangeset
for help on using the changeset viewer.