Changeset 41764 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Jun 15, 2012 5:36:56 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78581
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/cpumdis.h
r37955 r41764 39 39 #ifdef IN_RING3 40 40 VMMR3DECL(int) CPUMR3DisasmInstrCPU(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx, RTGCPTR GCPtrPC, PDISCPUSTATE pCpu, const char *pszPrefix); 41 42 # ifdef DEBUG 43 /** @deprecated Use DBGFR3DisasInstrCurrentLog(). */ 44 VMMR3DECL(void) CPUMR3DisasmInstr(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx, RTGCPTR pc, const char *pszPrefix); 45 # else 46 /** @deprecated Use DBGFR3DisasInstrCurrentLog(). */ 47 # define CPUMR3DisasmInstr(pVM, pVCpu, pCtx, pc, pszPrefix) do {} while (0) 48 # endif 49 50 #endif /* IN_RING3 */ 41 #endif 51 42 52 43 /** @} */ -
trunk/include/VBox/vmm/dbgf.h
r41545 r41764 914 914 #endif 915 915 916 VMMR3DECL(int) DBGFR3DisasInstrLogInternal(PVMCPU pVCpu, RTSEL Sel, RTGCPTR GCPtr );916 VMMR3DECL(int) DBGFR3DisasInstrLogInternal(PVMCPU pVCpu, RTSEL Sel, RTGCPTR GCPtr, const char *pszPrefix); 917 917 918 918 /** @def DBGFR3DisasInstrLog … … 922 922 */ 923 923 # ifdef LOG_ENABLED 924 # define DBGFR3DisasInstrLog(pVCpu, Sel, GCPtr ) \924 # define DBGFR3DisasInstrLog(pVCpu, Sel, GCPtr, pszPrefix) \ 925 925 do { \ 926 926 if (LogIsEnabled()) \ 927 DBGFR3DisasInstrLogInternal(pVCpu, Sel, GCPtr ); \927 DBGFR3DisasInstrLogInternal(pVCpu, Sel, GCPtr, pszPrefix); \ 928 928 } while (0) 929 929 # else 930 # define DBGFR3DisasInstrLog(pVCpu, Sel, GCPtr ) do { } while (0)930 # define DBGFR3DisasInstrLog(pVCpu, Sel, GCPtr, pszPrefix) do { } while (0) 931 931 # endif 932 932 #endif
Note:
See TracChangeset
for help on using the changeset viewer.