Changeset 47760 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Aug 15, 2013 12:57:02 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 88018
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/hm.h
r47737 r47760 224 224 VMMR0_INT_DECL(int) HMR0Enter(PVM pVM, PVMCPU pVCpu); 225 225 VMMR0_INT_DECL(int) HMR0Leave(PVM pVM, PVMCPU pVCpu); 226 VMMR0_INT_DECL(void) HMR0EnterEx(PVMCPU pVCpu); 227 VMMR0_INT_DECL(int) HMR0LeaveEx(PVMCPU pVCpu); 228 VMMR0_INT_DECL(void) HMR0ThreadCtxCallback(RTTHREADCTXEVENT enmEvent, void *pvUser); 226 229 VMMR0_INT_DECL(bool) HMR0SuspendPending(void); 227 230 -
trunk/include/VBox/vmm/hm_vmx.h
r47687 r47760 1916 1916 */ 1917 1917 #if ((RT_INLINE_ASM_EXTERNAL || !defined(RT_ARCH_X86)) && !VMX_USE_MSC_INTRINSICS) || defined(VBOX_WITH_HYBRID_32BIT_KERNEL) 1918 DECLASM(int) VMXClearV MCS(RTHCPHYS pVMCS);1918 DECLASM(int) VMXClearVmcs(RTHCPHYS pVMCS); 1919 1919 #else 1920 DECLINLINE(int) VMXClearV MCS(RTHCPHYS pVMCS)1920 DECLINLINE(int) VMXClearVmcs(RTHCPHYS pVMCS) 1921 1921 { 1922 1922 # if RT_INLINE_ASM_GNU_STYLE … … 1973 1973 */ 1974 1974 #if ((RT_INLINE_ASM_EXTERNAL || !defined(RT_ARCH_X86)) && !VMX_USE_MSC_INTRINSICS) || defined(VBOX_WITH_HYBRID_32BIT_KERNEL) 1975 DECLASM(int) VMXActivateV MCS(RTHCPHYS pVMCS);1975 DECLASM(int) VMXActivateVmcs(RTHCPHYS pVMCS); 1976 1976 #else 1977 DECLINLINE(int) VMXActivateV MCS(RTHCPHYS pVMCS)1977 DECLINLINE(int) VMXActivateVmcs(RTHCPHYS pVMCS) 1978 1978 { 1979 1979 # if RT_INLINE_ASM_GNU_STYLE … … 2027 2027 * @param pVMCS Address that will receive the current pointer 2028 2028 */ 2029 DECLASM(int) VMXGetActivate VMCS(RTHCPHYS *pVMCS);2029 DECLASM(int) VMXGetActivatedVmcs(RTHCPHYS *pVMCS); 2030 2030 2031 2031 /** -
trunk/include/VBox/vmm/vmm.h
r47645 r47760 32 32 #include <VBox/log.h> 33 33 #include <iprt/stdarg.h> 34 #include <iprt/thread.h> 34 35 35 36 RT_C_DECLS_BEGIN … … 500 501 VMMR0DECL(void) VMMR0ThreadCtxHooksRelease(PVMCPU pVCpu); 501 502 VMMR0DECL(bool) VMMR0ThreadCtxHooksAreCreated(PVMCPU pVCpu); 503 VMMR0DECL(int) VMMR0ThreadCtxHooksRegister(PVMCPU pVCpu, PFNRTTHREADCTXHOOK pfnHook); 504 VMMR0DECL(int) VMMR0ThreadCtxHooksDeregister(PVMCPU pVCpu); 502 505 VMMR0DECL(bool) VMMR0ThreadCtxHooksAreRegistered(PVMCPU pVCpu); 503 506
Note:
See TracChangeset
for help on using the changeset viewer.