Changeset 76557 in vbox for trunk/include/VBox
- Timestamp:
- Jan 1, 2019 2:37:24 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 127859
- Location:
- trunk/include/VBox
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxGuestLib.h
r76553 r76557 545 545 VBGLR3DECL(int) VbglR3InitUser(void); 546 546 VBGLR3DECL(void) VbglR3Term(void); 547 # ifdef ___iprt_time_h547 # ifdef IPRT_INCLUDED_time_h 548 548 VBGLR3DECL(int) VbglR3GetHostTime(PRTTIMESPEC pTime); 549 549 # endif -
trunk/include/VBox/apic.h
r76553 r76557 64 64 65 65 66 #ifdef ___iprt_asm_amd64_x86_h66 #ifdef IPRT_INCLUDED_asm_amd64_x86_h 67 67 /** 68 68 * Reads an X2APIC register. -
trunk/include/VBox/apic.mac
r76553 r76557 49 49 %define APIC_REG_LVT_LEVEL_TRIGGER RT_BIT(15) 50 50 %define APIC_REG_LVT_MASKED RT_BIT(16) 51 %ifdef ___iprt_asm_amd64_x86_h51 %ifdef IPRT_INCLUDED_asm_amd64_x86_h 52 52 %endif 53 53 %endif -
trunk/include/VBox/hgcmsvc.h
r76553 r76557 428 428 429 429 #ifdef __cplusplus 430 # ifdef ___iprt_cpp_ministring_h430 # ifdef IPRT_INCLUDED_cpp_ministring_h 431 431 /** Set a const string value to an HGCM parameter structure */ 432 432 DECLINLINE(void) HGCMSvcSetRTCStr(VBOXHGCMSVCPARM *pParm, const RTCString &rString) -
trunk/include/VBox/vmm/pdmcritsect.h
r76553 r76557 90 90 /* Strict build: Remap the two enter calls to the debug versions. */ 91 91 #ifdef VBOX_STRICT 92 # ifdef ___iprt_asm_h92 # ifdef IPRT_INCLUDED_asm_h 93 93 # define PDMCritSectEnter(pCritSect, rcBusy) PDMCritSectEnterDebug((pCritSect), (rcBusy), (uintptr_t)ASMReturnAddress(), RT_SRC_POS) 94 94 # define PDMCritSectTryEnter(pCritSect) PDMCritSectTryEnterDebug((pCritSect), (uintptr_t)ASMReturnAddress(), RT_SRC_POS) -
trunk/include/VBox/vmm/pdmcritsectrw.h
r76553 r76557 81 81 /* Lock strict build: Remap the three enter calls to the debug versions. */ 82 82 #ifdef VBOX_STRICT 83 # ifdef ___iprt_asm_h83 # ifdef IPRT_INCLUDED_asm_h 84 84 # define PDMCritSectRwEnterExcl(pCritSect, rcBusy) PDMCritSectRwEnterExclDebug(pCritSect, rcBusy, (uintptr_t)ASMReturnAddress(), RT_SRC_POS) 85 85 # define PDMCritSectRwTryEnterExcl(pCritSect) PDMCritSectRwTryEnterExclDebug(pCritSect, (uintptr_t)ASMReturnAddress(), RT_SRC_POS)
Note:
See TracChangeset
for help on using the changeset viewer.