Changeset 60601 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Apr 20, 2016 2:03:01 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/apic.h
r60593 r60601 901 901 AssertCompileMemberOffset(X2APICPAGE, self_ipi, X2APIC_OFF_SELF_IPI); 902 902 903 /** The offset (in bits) of the posted-interrupt bitmap's outstanding904 * notification bit. */905 #define XAPIC_PIB_NOTIFICATION_BIT UINT32_C(256)906 907 903 /** 908 904 * APIC Pending Interrupt Bitmap (PIB). 909 * The layout is critical as it mimics VT-x's Posted Interrupt Bitmap! 905 * @note This structure is used in saved-state, careful with changing layout or 906 * size! 910 907 */ 911 908 typedef struct APICPIB … … 915 912 uint8_t au8Reserved[28]; 916 913 } APICPIB; 917 AssertCompileMemberOffset(APICPIB, fOutstandingNotification, XAPIC_PIB_NOTIFICATION_BIT/ 8);914 AssertCompileMemberOffset(APICPIB, fOutstandingNotification, 256 / 8); 918 915 AssertCompileSize(APICPIB, 64); 919 916 /** Pointer to a pending interrupt bitmap. */
Note:
See TracChangeset
for help on using the changeset viewer.