VirtualBox

Changeset 2749 in vbox for trunk/src/VBox/Devices/PC


Ignore:
Timestamp:
May 21, 2007 4:31:41 PM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
21352
Message:

QueryCPUId -> GetCpuId (it's a wrapper for CPUMGetGuestCpuId).

Location:
trunk/src/VBox/Devices/PC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/PC/DevAPIC.cpp

    r2640 r2749  
    17101710     */
    17111711    uint32_t u32Eax, u32Ebx, u32Ecx, u32Edx;
    1712     PDMDevHlpQueryCPUId(pDevIns, 0, &u32Eax, &u32Ebx, &u32Ecx, &u32Edx);
     1712    PDMDevHlpGetCpuId(pDevIns, 0, &u32Eax, &u32Ebx, &u32Ecx, &u32Edx);
    17131713    if (u32Eax >= 1)
    17141714    {
  • trunk/src/VBox/Devices/PC/DevPcBios.cpp

    r2651 r2749  
    732732}
    733733
     734
    734735/**
    735736 * Construct the DMI table.
     
    815816}
    816817
     818
    817819/**
    818820 * Construct the MPS table. Only applicable if IOAPIC is active.
     
    843845    uint32_t u32CPUSignature = 0x0520; /* default: Pentium 100 */
    844846    uint32_t u32FeatureFlags = 0x0001; /* default: FPU */
    845     PDMDevHlpQueryCPUId(pDevIns, 0, &u32Eax, &u32Ebx, &u32Ecx, &u32Edx);
     847    PDMDevHlpGetCpuId(pDevIns, 0, &u32Eax, &u32Ebx, &u32Ecx, &u32Edx);
    846848    if (u32Eax >= 1)
    847849    {
    848         PDMDevHlpQueryCPUId(pDevIns, 1, &u32Eax, &u32Ebx, &u32Ecx, &u32Edx);
     850        PDMDevHlpGetCpuId(pDevIns, 1, &u32Eax, &u32Ebx, &u32Ecx, &u32Edx);
    849851        u32CPUSignature = u32Eax & 0xfff;
    850852        /* Local APIC will be enabled later so override it here. Since we provide
     
    883885
    884886    PMPSIOIRQENTRY pIrqEntry       = (PMPSIOIRQENTRY)(pIOAPICEntry+1);
    885     for (int i=0; i<16; i++, pIrqEntry++)
     887    for (int i = 0; i < 16; i++, pIrqEntry++)
    886888    {
    887889        pIrqEntry->u8EntryType     = 3; /* I/O interrupt entry */
Note: See TracChangeset for help on using the changeset viewer.

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