Changeset 13718 in vbox
- Timestamp:
- Oct 31, 2008 2:40:19 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38685
- Location:
- trunk/include
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/Makefile.kmk
r11820 r13718 39 39 VBox/VBoxHDD.h \ 40 40 iprt/tcp.h \ 41 iprt/localipc.h 41 42 42 43 hdrs := $(filter-out \ 43 44 VBox/VBoxGuest16.h \ 44 45 VBox/tapwin32.h \ 45 VBox/usblib-win.h, \ 46 VBox/usblib-win.h \ 47 VBox/usblib-solaris.h, \ 46 48 $(wildcard VBox/*.h iprt/*.h)) 47 49 -
trunk/include/VBox/hwacc_vmx.h
r13203 r13718 35 35 #include <iprt/assert.h> 36 36 #include <iprt/asm.h> 37 #include <VBox/x86.h> 37 38 38 39 /** @defgroup grp_vmx vmx Types and Definitions … … 52 53 /** 53 54 * EPT Page Directory Pointer Entry. Bit view. 55 * @todo uint64_t isn't safe for bitfields (gcc pedantic warnings, and IIRC, 56 * this did cause trouble with one compiler/version). 54 57 */ 55 58 #pragma pack(1) -
trunk/include/VBox/selm.h
r13579 r13718 79 79 80 80 VMMDECL(int) SELMToFlatEx(PVM pVM, DIS_SELREG SelReg, PCCPUMCTXCORE pCtxCore, RTGCPTR Addr, unsigned fFlags, PRTGCPTR ppvGC); 81 VMMDECL(int) SELMToFlatBySelEx(PVM pVM, X86EFLAGS eflags, RTSEL Sel, RTGCPTR Addr, CPUMSELREGHID *pHiddenSel, unsigned fFlags, PRTGCPTR ppvGC, uint32_t *pcb);81 VMMDECL(int) SELMToFlatBySelEx(PVM pVM, X86EFLAGS eflags, RTSEL Sel, RTGCPTR Addr, PCPUMSELREGHID pHiddenSel, unsigned fFlags, PRTGCPTR ppvGC, uint32_t *pcb); 82 82 VMMDECL(int) SELMValidateAndConvertCSAddr(PVM pVM, X86EFLAGS eflags, RTSEL SelCPL, RTSEL SelCS, PCPUMSELREGHID pHiddenCSSel, RTGCPTR Addr, PRTGCPTR ppvFlat); 83 83 VMMDECL(int) SELMValidateAndConvertCSAddrGCTrap(PVM pVM, X86EFLAGS eflags, RTSEL SelCPL, RTSEL SelCS, RTGCPTR Addr, PRTGCPTR ppvFlat, uint32_t *pcBits); 84 VMMDECL(DISCPUMODE) SELMGetCpuModeFromSelector(PVM pVM, X86EFLAGS eflags, RTSEL Sel, CPUMSELREGHID *pHiddenSel);84 VMMDECL(DISCPUMODE) SELMGetCpuModeFromSelector(PVM pVM, X86EFLAGS eflags, RTSEL Sel, PCPUMSELREGHID pHiddenSel); 85 85 VMMDECL(int) SELMGetLDTFromSel(PVM pVM, RTSEL SelLdt, PRTGCPTR ppvLdt, unsigned *pcbLimit); 86 86 -
trunk/include/iprt/autores.h
r11934 r13718 32 32 33 33 #include <iprt/types.h> 34 #include <iprt/mem.h>35 34 #include <iprt/assert.h> 36 35 … … 209 208 }; 210 209 210 211 /* include after template definition */ 212 #include <iprt/mem.h> 213 211 214 #endif 212 215 -
trunk/include/iprt/mem.h
r11022 r13718 370 370 371 371 #ifdef __cplusplus 372 # include <iprt/assert.h> 372 373 373 374 /**
Note:
See TracChangeset
for help on using the changeset viewer.