Changeset 19293 in vbox for trunk/include/VBox
- Timestamp:
- May 1, 2009 4:11:18 PM (16 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/dbgf.h
r19291 r19293 771 771 #define DBGF_SEL_FLAT 1 772 772 773 VMMR3DECL(int) DBGFR3DisasInstrEx(PVM pVM, PVMCPU pVCpu, RTSEL Sel, RTGCPTR GCPtr, unsigned fFlags, char *pszOutput, uint32_t cchOutput, uint32_t *pcbInstr); 774 VMMR3DECL(int) DBGFR3DisasInstr(PVM pVM, PVMCPU pVCpu, RTSEL Sel, RTGCPTR GCPtr, char *pszOutput, uint32_t cbOutput); 773 VMMR3DECL(int) DBGFR3DisasInstrEx(PVM pVM, VMCPUID idCpu, RTSEL Sel, RTGCPTR GCPtr, unsigned fFlags, char *pszOutput, uint32_t cchOutput, uint32_t *pcbInstr); 775 774 VMMR3DECL(int) DBGFR3DisasInstrCurrent(PVM pVM, char *pszOutput, uint32_t cbOutput); 776 775 VMMR3DECL(int) DBGFR3DisasInstrCurrentLogInternal(PVM pVM, const char *pszPrefix); … … 791 790 #endif 792 791 793 VMMR3DECL(int) DBGFR3DisasInstrLogInternal(PVM pVM, PVMCPU pVCpu,RTSEL Sel, RTGCPTR GCPtr);792 VMMR3DECL(int) DBGFR3DisasInstrLogInternal(PVM pVM, RTSEL Sel, RTGCPTR GCPtr); 794 793 795 794 /** @def DBGFR3DisasInstrLog 796 795 * Disassembles the specified guest context instruction and writes it to the log. 797 796 * Addresses will be attempted resolved to symbols. 797 * @thread Any EMT. 798 798 */ 799 799 #ifdef LOG_ENABLED -
trunk/include/VBox/pdmdev.h
r19043 r19293 2694 2694 2695 2695 /** 2696 * Get CPUID. 2696 * Get the specified CPUID leaf for the virtual CPU associated with the calling 2697 * thread. 2697 2698 * 2698 2699 * @param pDevIns Device instance. … … 2702 2703 * @param pEcx Where to store the ECX value. 2703 2704 * @param pEdx Where to store the EDX value. 2705 * @thread EMT. 2704 2706 */ 2705 2707 DECLR3CALLBACKMEMBER(void, pfnGetCpuId,(PPDMDEVINS pDevIns, uint32_t iLeaf, uint32_t *pEax, uint32_t *pEbx, uint32_t *pEcx, uint32_t *pEdx)); -
trunk/include/VBox/vmm.h
r19257 r19293 114 114 VMMDECL(PVMCPU) VMMGetCpu(PVM pVM); 115 115 VMMDECL(PVMCPU) VMMGetCpu0(PVM pVM); 116 VMMDECL(PVMCPU) VMMGetCpu Ex(PVM pVM, RTCPUID idCpu);116 VMMDECL(PVMCPU) VMMGetCpuById(PVM pVM, RTCPUID idCpu); 117 117 VMMDECL(uint32_t) VMMGetSvnRev(void); 118 118 VMMDECL(VMMSWITCHER) VMMGetSwitcher(PVM pVM);
Note:
See TracChangeset
for help on using the changeset viewer.