VirtualBox

Changeset 20002 in vbox


Ignore:
Timestamp:
May 25, 2009 2:06:09 PM (16 years ago)
Author:
vboxsync
Message:

Missed changes

Location:
trunk/src/recompiler
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/recompiler/VBoxREMWrapper.cpp

    r19822 r20002  
    675675static const REMPARMDESC g_aArgsPDMApicGetTPR[] =
    676676{
    677     { REMPARMDESC_FLAGS_INT,        sizeof(PVM), NULL },
     677    { REMPARMDESC_FLAGS_INT,        sizeof(PVMCPU), NULL },
    678678    { REMPARMDESC_FLAGS_INT,        sizeof(uint8_t *), NULL },
    679679    { REMPARMDESC_FLAGS_INT,        sizeof(uint8_t *), NULL }
     
    686686static const REMPARMDESC g_aArgsPDMApicSetTPR[] =
    687687{
    688     { REMPARMDESC_FLAGS_INT,        sizeof(PVM), NULL },
     688    { REMPARMDESC_FLAGS_INT,        sizeof(PVMCPU), NULL },
    689689    { REMPARMDESC_FLAGS_INT,        sizeof(uint8_t), NULL }
    690690};
  • trunk/src/recompiler/VBoxRecompiler.c

    r19747 r20002  
    40794079void cpu_set_apic_tpr(CPUX86State *env, uint8_t val)
    40804080{
    4081     int rc = PDMApicSetTPR(env->pVM, val);
     4081    int rc = PDMApicSetTPR(env->pVCpu, val);
    40824082    LogFlow(("cpu_set_apic_tpr: val=%#x rc=%Rrc\n", val, rc)); NOREF(rc);
    40834083}
     
    40864086{
    40874087    uint8_t u8;
    4088     int rc = PDMApicGetTPR(env->pVM, &u8, NULL);
     4088    int rc = PDMApicGetTPR(env->pVCpu, &u8, NULL);
    40894089    if (RT_SUCCESS(rc))
    40904090    {
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