VirtualBox

Changeset 60689 in vbox for trunk/include


Ignore:
Timestamp:
Apr 25, 2016 1:43:42 PM (9 years ago)
Author:
vboxsync
Message:

VMM/APIC: Implemented old saved-state compatibility, eliminated unnecessary volatile members.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/vmm/apic.h

    r60646 r60689  
    256256        struct
    257257        {
    258             uint32_t            u24Reserved0    : 24;
    259             uint32_t            u8LogicalApicId : 8;
     258            uint8_t             u8Reserved0[3];
     259            uint8_t             u8LogicalApicId;
    260260            uint32_t            u32Reserved0[3];
    261261        } u;
     
    530530} XAPICPAGE;
    531531/** Pointer to a XAPICPAGE struct. */
    532 typedef volatile XAPICPAGE *PXAPICPAGE;
     532typedef XAPICPAGE *PXAPICPAGE;
    533533/** Pointer to a const XAPICPAGE struct. */
    534 typedef const volatile XAPICPAGE *PCXAPICPAGE;
     534typedef const XAPICPAGE *PCXAPICPAGE;
    535535AssertCompileSize(XAPICPAGE, 4096);
    536536AssertCompileMemberOffset(XAPICPAGE, id,          XAPIC_OFF_ID);
     
    871871} X2APICPAGE;
    872872/** Pointer to a X2APICPAGE struct. */
    873 typedef volatile X2APICPAGE *PX2APICPAGE;
     873typedef X2APICPAGE *PX2APICPAGE;
    874874/** Pointer to a const X2APICPAGE struct. */
    875 typedef const volatile X2APICPAGE *PCX2APICPAGE;
     875typedef const X2APICPAGE *PCX2APICPAGE;
    876876AssertCompileSize(X2APICPAGE, 4096);
    877877AssertCompileSize(X2APICPAGE, sizeof(XAPICPAGE));
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette