Changeset 31444 in vbox for trunk/include
- Timestamp:
- Aug 6, 2010 7:47:04 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 64517
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/types.h
r30646 r31444 825 825 /** 826 826 * Page mapping lock. 827 *828 827 */ 829 828 typedef struct PGMPAGEMAPLOCK 830 829 { 831 /** @todo see PGMPhysIsPageMappingLockValid for possibly incorrect assumptions */832 830 #if defined(IN_RC) || defined(VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0) 833 /** Just a dummy for the time being. */834 uint32_t u32Dummy;835 uint32_t u32Dummy1;836 # if HC_ARCH_BITS == 64 837 uint32_t u32Align[2];838 # endif 831 /** The locked page. */ 832 void *pvPage; 833 /** Pointer to the CPU that made the mapping. 834 * In ring-0 and raw-mode context we don't intend to ever allow long term 835 * locking and this is a way of making sure we're still on the same CPU. */ 836 PVMCPU pVCpu; 839 837 #else 840 838 /** Pointer to the PGMPAGE and lock type.
Note:
See TracChangeset
for help on using the changeset viewer.