- Timestamp:
- May 29, 2008 11:29:55 AM (17 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/CPUM.cpp
r9212 r9216 1684 1684 * In this context it's always pointer to the Core of a DBGFDISASSTATE. 1685 1685 */ 1686 static DECLCALLBACK(int) cpumR3DisasInstrRead(RTUINTPTR PtrSrc, uint8_t *pu8Dst, u int32_tcbRead, void *uDisCpu)1686 static DECLCALLBACK(int) cpumR3DisasInstrRead(RTUINTPTR PtrSrc, uint8_t *pu8Dst, unsigned cbRead, void *uDisCpu) 1687 1687 { 1688 1688 PDISCPUSTATE pCpu = (PDISCPUSTATE)uDisCpu; -
trunk/src/VBox/VMM/PATM/CSAM.cpp
r9212 r9216 600 600 * 601 601 */ 602 static DECLCALLBACK(int) CSAMR3ReadBytes(RT HCUINTPTR pSrc, uint8_t *pDest, unsigned size, void *pvUserdata)602 static DECLCALLBACK(int) CSAMR3ReadBytes(RTUINTPTR pSrc, uint8_t *pDest, unsigned size, void *pvUserdata) 603 603 { 604 604 DISCPUSTATE *pCpu = (DISCPUSTATE *)pvUserdata; -
trunk/src/VBox/VMM/PATM/PATM.cpp
r9212 r9216 514 514 * 515 515 */ 516 int patmReadBytes(RT HCUINTPTR pSrc, uint8_t *pDest, unsigned size, void *pvUserdata)516 int patmReadBytes(RTUINTPTR pSrc, uint8_t *pDest, unsigned size, void *pvUserdata) 517 517 { 518 518 DISCPUSTATE *pCpu = (DISCPUSTATE *)pvUserdata; -
trunk/src/VBox/VMM/PATM/PATMInternal.h
r9212 r9216 673 673 * 674 674 */ 675 int patmReadBytes(RT HCUINTPTR pSrc, uint8_t *pDest, unsigned size, void *pvUserdata);675 int patmReadBytes(RTUINTPTR pSrc, uint8_t *pDest, unsigned size, void *pvUserdata); 676 676 677 677 -
trunk/src/VBox/VMM/SELMInternal.h
r9212 r9216 110 110 RTUINT offLdtHyper; 111 111 112 #if HC_ARCH_BITS == 32 || GC_ARCH_BITS == 64112 #if (HC_ARCH_BITS == 32 || GC_ARCH_BITS == 64) && !(HC_ARCH_BITS == 32 && GC_ARCH_BITS == 64) 113 113 /** TSS alignment padding. */ 114 114 RTUINT auPadding[2]; -
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r9212 r9216 89 89 * 90 90 */ 91 DECLCALLBACK(int) EMReadBytes(RT HCUINTPTR pSrc, uint8_t *pDest, unsigned cb, void *pvUserdata)91 DECLCALLBACK(int) EMReadBytes(RTUINTPTR pSrc, uint8_t *pDest, unsigned cb, void *pvUserdata) 92 92 { 93 93 DISCPUSTATE *pCpu = (DISCPUSTATE *)pvUserdata;
Note:
See TracChangeset
for help on using the changeset viewer.