VirtualBox

Changeset 101039 in vbox for trunk/src/VBox/Main


Ignore:
Timestamp:
Sep 7, 2023 9:27:50 AM (17 months ago)
Author:
vboxsync
Message:

Initial commit (based draft v2 / on patch v5) for implementing platform architecture support for x86 and ARM: Doxygen / Javadoc fixes. bugref:10384

Location:
trunk/src/VBox/Main
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/idl/VirtualBox.xidl

    r101035 r101039  
    10361036      Platform architecture.
    10371037      <note>
    1038         <para>This does not specify the CPU type.
    1039           See <link to="CPUArchitecture"/> for more information.</para>
     1038        This does not specify the CPU type. See <link to="CPUArchitecture"/> for more information.
    10401039      </note>
    10411040    </desc>
  • trunk/src/VBox/Main/src-client/ConsoleImpl.cpp

    r101035 r101039  
    52445244    AssertComRC(hrc);
    52455245
    5246     ChipsetType_T chipsetType = ChipsetType_PIIX3; /*** @todo BUGBUG ASSUMES x86! */
     5246    ChipsetType_T chipsetType = ChipsetType_PIIX3; /** @todo BUGBUG ASSUMES x86! */
    52475247    pPlatform->COMGETTER(ChipsetType)(&chipsetType);
    52485248    AssertComRC(hrc);
     
    1068010680    AssertComRC(hrc);
    1068110681
    10682     ChipsetType_T chipsetType = ChipsetType_PIIX3; /*** @todo BUGBUG ASSUMES x86! */
     10682    ChipsetType_T chipsetType = ChipsetType_PIIX3; /** @todo BUGBUG ASSUMES x86! */
    1068310683    pPlatform->COMGETTER(ChipsetType)(&chipsetType);
    1068410684    AssertComRC(hrc);
  • trunk/src/VBox/Main/src-server/MachineImpl.cpp

    r101035 r101039  
    63066306        if (FAILED(hrc)) return hrc;
    63076307
    6308         ChipsetType_T aChipset = ChipsetType_PIIX3; /*** @todo BUGBUG ASSUMES x86! */
     6308        ChipsetType_T aChipset = ChipsetType_PIIX3; /** @todo BUGBUG ASSUMES x86! */
    63096309        hrc = mPlatform->COMGETTER(ChipsetType)(&aChipset);
    63106310        if (FAILED(hrc)) return hrc;
    63116311
    6312         if (aChipset != ChipsetType_ICH9) /*** @todo BUGBUG ASSUMES x86! */
     6312        if (aChipset != ChipsetType_ICH9) /** @todo BUGBUG ASSUMES x86! */
    63136313        {
    63146314            return setError(E_INVALIDARG,
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