Changeset 20838 in vbox for trunk/include
- Timestamp:
- Jun 23, 2009 2:15:46 PM (16 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/hwaccm.h
r20374 r20838 118 118 * @{ 119 119 */ 120 VMMR3DECL(bool) HWACCMR3IsEventPending(PVM pVM);120 VMMR3DECL(bool) HWACCMR3IsEventPending(PVMCPU pVCpu); 121 121 VMMR3DECL(int) HWACCMR3Init(PVM pVM); 122 122 VMMR3DECL(int) HWACCMR3InitCPU(PVM pVM); -
trunk/include/VBox/vm.h
r20835 r20838 302 302 #define VMCPU_FF_TIMER RT_BIT_32(2) 303 303 /** This action forces the VM to check any pending NMIs. */ 304 #define VMCPU_FF_INTERRUPT_NMI RT_BIT_32(3) 304 #define VMCPU_FF_INTERRUPT_NMI_BIT 3 305 #define VMCPU_FF_INTERRUPT_NMI RT_BIT_32(VMCPU_FF_INTERRUPT_NMI_BIT) 305 306 /** This action forces the VM to check any pending SMIs. */ 306 #define VMCPU_FF_INTERRUPT_SMI RT_BIT_32(4) 307 #define VMCPU_FF_INTERRUPT_SMI_BIT 4 308 #define VMCPU_FF_INTERRUPT_SMI RT_BIT_32(VMCPU_FF_INTERRUPT_SMI_BIT) 307 309 /** PDM critical section unlocking is pending, process promptly upon return to R3. */ 308 310 #define VMCPU_FF_PDM_CRITSECT RT_BIT_32(5)
Note:
See TracChangeset
for help on using the changeset viewer.