Changeset 12989 in vbox for trunk/src/VBox/VMM/DBGF.cpp
- Timestamp:
- Oct 6, 2008 2:15:39 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/DBGF.cpp
r12896 r12989 132 132 * @param pVM VM handle. 133 133 */ 134 DBGFR3DECL(int) DBGFR3Init(PVM pVM)134 VMMR3DECL(int) DBGFR3Init(PVM pVM) 135 135 { 136 136 int rc = dbgfR3InfoInit(pVM); … … 149 149 * @param pVM VM Handle. 150 150 */ 151 DBGFR3DECL(int) DBGFR3Term(PVM pVM)151 VMMR3DECL(int) DBGFR3Term(PVM pVM) 152 152 { 153 153 int rc; … … 218 218 * @param offDelta Relocation delta relative to old location. 219 219 */ 220 DBGFR3DECL(void) DBGFR3Relocate(PVM pVM, RTGCINTPTR offDelta)220 VMMR3DECL(void) DBGFR3Relocate(PVM pVM, RTGCINTPTR offDelta) 221 221 { 222 222 } … … 281 281 * @param pVM VM Handle. 282 282 */ 283 DBGFR3DECL(int) DBGFR3VMMForcedAction(PVM pVM)283 VMMR3DECL(int) DBGFR3VMMForcedAction(PVM pVM) 284 284 { 285 285 /* … … 424 424 * @param enmEvent The event to send. 425 425 */ 426 DBGFR3DECL(int) DBGFR3Event(PVM pVM, DBGFEVENTTYPE enmEvent)426 VMMR3DECL(int) DBGFR3Event(PVM pVM, DBGFEVENTTYPE enmEvent) 427 427 { 428 428 int rc = dbgfR3EventPrologue(pVM, enmEvent); … … 451 451 * @param ... Message arguments. 452 452 */ 453 DBGFR3DECL(int) DBGFR3EventSrc(PVM pVM, DBGFEVENTTYPE enmEvent, const char *pszFile, unsigned uLine, const char *pszFunction, const char *pszFormat, ...)453 VMMR3DECL(int) DBGFR3EventSrc(PVM pVM, DBGFEVENTTYPE enmEvent, const char *pszFile, unsigned uLine, const char *pszFunction, const char *pszFormat, ...) 454 454 { 455 455 va_list args; … … 473 473 * @param args Message arguments. 474 474 */ 475 DBGFR3DECL(int) DBGFR3EventSrcV(PVM pVM, DBGFEVENTTYPE enmEvent, const char *pszFile, unsigned uLine, const char *pszFunction, const char *pszFormat, va_list args)475 VMMR3DECL(int) DBGFR3EventSrcV(PVM pVM, DBGFEVENTTYPE enmEvent, const char *pszFile, unsigned uLine, const char *pszFunction, const char *pszFormat, va_list args) 476 476 { 477 477 int rc = dbgfR3EventPrologue(pVM, enmEvent); … … 512 512 * @param pszMsg2 Second assertion message. 513 513 */ 514 DBGFR3DECL(int) DBGFR3EventAssertion(PVM pVM, DBGFEVENTTYPE enmEvent, const char *pszMsg1, const char *pszMsg2)514 VMMR3DECL(int) DBGFR3EventAssertion(PVM pVM, DBGFEVENTTYPE enmEvent, const char *pszMsg1, const char *pszMsg2) 515 515 { 516 516 int rc = dbgfR3EventPrologue(pVM, enmEvent); … … 537 537 * @param enmEvent DBGFEVENT_BREAKPOINT_HYPER or DBGFEVENT_BREAKPOINT. 538 538 */ 539 DBGFR3DECL(int) DBGFR3EventBreakpoint(PVM pVM, DBGFEVENTTYPE enmEvent)539 VMMR3DECL(int) DBGFR3EventBreakpoint(PVM pVM, DBGFEVENTTYPE enmEvent) 540 540 { 541 541 int rc = dbgfR3EventPrologue(pVM, enmEvent); … … 801 801 * @param pVM VM Handle. 802 802 */ 803 DBGFR3DECL(int) DBGFR3Attach(PVM pVM)803 VMMR3DECL(int) DBGFR3Attach(PVM pVM) 804 804 { 805 805 /* … … 868 868 * @param pVM VM Handle. 869 869 */ 870 DBGFR3DECL(int) DBGFR3Detach(PVM pVM)870 VMMR3DECL(int) DBGFR3Detach(PVM pVM) 871 871 { 872 872 LogFlow(("DBGFR3Detach:\n")); … … 916 916 * @param ppEvent Where to store the event pointer. 917 917 */ 918 DBGFR3DECL(int) DBGFR3EventWait(PVM pVM, unsigned cMillies, PCDBGFEVENT *ppEvent)918 VMMR3DECL(int) DBGFR3EventWait(PVM pVM, unsigned cMillies, PCDBGFEVENT *ppEvent) 919 919 { 920 920 /* … … 948 948 * @param pVM VM handle. 949 949 */ 950 DBGFR3DECL(int) DBGFR3Halt(PVM pVM)950 VMMR3DECL(int) DBGFR3Halt(PVM pVM) 951 951 { 952 952 /* … … 975 975 * @param pVM VM handle. 976 976 */ 977 DBGFR3DECL(bool) DBGFR3IsHalted(PVM pVM)977 VMMR3DECL(bool) DBGFR3IsHalted(PVM pVM) 978 978 { 979 979 AssertReturn(pVM->dbgf.s.fAttached, false); … … 993 993 * @param pVM VM handle. 994 994 */ 995 DBGFR3DECL(bool) DBGFR3CanWait(PVM pVM)995 VMMR3DECL(bool) DBGFR3CanWait(PVM pVM) 996 996 { 997 997 AssertReturn(pVM->dbgf.s.fAttached, false); … … 1008 1008 * @param pVM VM handle. 1009 1009 */ 1010 DBGFR3DECL(int) DBGFR3Resume(PVM pVM)1010 VMMR3DECL(int) DBGFR3Resume(PVM pVM) 1011 1011 { 1012 1012 /* … … 1036 1036 * @param pVM VM handle. 1037 1037 */ 1038 DBGFR3DECL(int) DBGFR3Step(PVM pVM)1038 VMMR3DECL(int) DBGFR3Step(PVM pVM) 1039 1039 { 1040 1040 /* … … 1064 1064 * @thread EMT 1065 1065 */ 1066 DBGFR3DECL(int) DBGFR3PrgStep(PVM pVM)1066 VMMR3DECL(int) DBGFR3PrgStep(PVM pVM) 1067 1067 { 1068 1068 VM_ASSERT_EMT(pVM);
Note:
See TracChangeset
for help on using the changeset viewer.