Changeset 20002 in vbox
- Timestamp:
- May 25, 2009 2:06:09 PM (16 years ago)
- Location:
- trunk/src/recompiler
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/VBoxREMWrapper.cpp
r19822 r20002 675 675 static const REMPARMDESC g_aArgsPDMApicGetTPR[] = 676 676 { 677 { REMPARMDESC_FLAGS_INT, sizeof(PVM ), NULL },677 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL }, 678 678 { REMPARMDESC_FLAGS_INT, sizeof(uint8_t *), NULL }, 679 679 { REMPARMDESC_FLAGS_INT, sizeof(uint8_t *), NULL } … … 686 686 static const REMPARMDESC g_aArgsPDMApicSetTPR[] = 687 687 { 688 { REMPARMDESC_FLAGS_INT, sizeof(PVM ), NULL },688 { REMPARMDESC_FLAGS_INT, sizeof(PVMCPU), NULL }, 689 689 { REMPARMDESC_FLAGS_INT, sizeof(uint8_t), NULL } 690 690 }; -
trunk/src/recompiler/VBoxRecompiler.c
r19747 r20002 4079 4079 void cpu_set_apic_tpr(CPUX86State *env, uint8_t val) 4080 4080 { 4081 int rc = PDMApicSetTPR(env->pV M, val);4081 int rc = PDMApicSetTPR(env->pVCpu, val); 4082 4082 LogFlow(("cpu_set_apic_tpr: val=%#x rc=%Rrc\n", val, rc)); NOREF(rc); 4083 4083 } … … 4086 4086 { 4087 4087 uint8_t u8; 4088 int rc = PDMApicGetTPR(env->pV M, &u8, NULL);4088 int rc = PDMApicGetTPR(env->pVCpu, &u8, NULL); 4089 4089 if (RT_SUCCESS(rc)) 4090 4090 {
Note:
See TracChangeset
for help on using the changeset viewer.