Changeset 9154 in vbox for trunk/src/VBox/VMM
- Timestamp:
- May 27, 2008 11:33:58 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 31289
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/CPUM.cpp
r8889 r9154 1684 1684 * In this context it's always pointer to the Core of a DBGFDISASSTATE. 1685 1685 */ 1686 static DECLCALLBACK(int) cpumR3DisasInstrRead(RT HCUINTPTR PtrSrc, uint8_t *pu8Dst, uint32_t cbRead, void *uDisCpu)1686 static DECLCALLBACK(int) cpumR3DisasInstrRead(RTUINTPTR PtrSrc, uint8_t *pu8Dst, uint32_t cbRead, void *uDisCpu) 1687 1687 { 1688 1688 PDISCPUSTATE pCpu = (PDISCPUSTATE)uDisCpu; -
trunk/src/VBox/VMM/DBGFDisas.cpp
r8155 r9154 45 45 * Internal Functions * 46 46 *******************************************************************************/ 47 static DECLCALLBACK(int) dbgfR3DisasInstrRead(RT HCUINTPTR pSrc, uint8_t *pDest, uint32_t size, void *pvUserdata);47 static DECLCALLBACK(int) dbgfR3DisasInstrRead(RTUINTPTR pSrc, uint8_t *pDest, uint32_t size, void *pvUserdata); 48 48 49 49 … … 168 168 * In this context it's always pointer to the Core of a DBGFDISASSTATE. 169 169 */ 170 static DECLCALLBACK(int) dbgfR3DisasInstrRead(RT HCUINTPTR PtrSrc, uint8_t *pu8Dst, uint32_t cbRead, void *pvDisCpu)170 static DECLCALLBACK(int) dbgfR3DisasInstrRead(RTUINTPTR PtrSrc, uint8_t *pu8Dst, uint32_t cbRead, void *pvDisCpu) 171 171 { 172 172 PDBGFDISASSTATE pState = (PDBGFDISASSTATE)pvDisCpu; -
trunk/src/VBox/VMM/PDMCritSect.cpp
r8155 r9154 147 147 PDMR3DECL(int) PDMR3CritSectInit(PVM pVM, PPDMCRITSECT pCritSect, const char *pszName) 148 148 { 149 #if HC_ARCH_BITS == 64 && GC_ARCH_BITS == 32 149 150 AssertCompile(sizeof(pCritSect->padding) >= sizeof(pCritSect->s)); 151 #endif 150 152 return pdmR3CritSectInitOne(pVM, &pCritSect->s, pCritSect, pszName); 151 153 }
Note:
See TracChangeset
for help on using the changeset viewer.