VirtualBox

Changeset 12989 in vbox for trunk/src/VBox/VMM/DBGF.cpp


Ignore:
Timestamp:
Oct 6, 2008 2:15:39 AM (16 years ago)
Author:
vboxsync
Message:

VMM + VBox/cdefs.h: consolidated all the XYZ*DECLS of the VMM into VMM*DECL. Removed dead DECL and IN_XYZ* macros.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/DBGF.cpp

    r12896 r12989  
    132132 * @param   pVM     VM handle.
    133133 */
    134 DBGFR3DECL(int) DBGFR3Init(PVM pVM)
     134VMMR3DECL(int) DBGFR3Init(PVM pVM)
    135135{
    136136    int rc = dbgfR3InfoInit(pVM);
     
    149149 * @param   pVM     VM Handle.
    150150 */
    151 DBGFR3DECL(int) DBGFR3Term(PVM pVM)
     151VMMR3DECL(int) DBGFR3Term(PVM pVM)
    152152{
    153153    int rc;
     
    218218 * @param   offDelta    Relocation delta relative to old location.
    219219 */
    220 DBGFR3DECL(void) DBGFR3Relocate(PVM pVM, RTGCINTPTR offDelta)
     220VMMR3DECL(void) DBGFR3Relocate(PVM pVM, RTGCINTPTR offDelta)
    221221{
    222222}
     
    281281 * @param   pVM         VM Handle.
    282282 */
    283 DBGFR3DECL(int) DBGFR3VMMForcedAction(PVM pVM)
     283VMMR3DECL(int) DBGFR3VMMForcedAction(PVM pVM)
    284284{
    285285    /*
     
    424424 * @param   enmEvent    The event to send.
    425425 */
    426 DBGFR3DECL(int) DBGFR3Event(PVM pVM, DBGFEVENTTYPE enmEvent)
     426VMMR3DECL(int) DBGFR3Event(PVM pVM, DBGFEVENTTYPE enmEvent)
    427427{
    428428    int rc = dbgfR3EventPrologue(pVM, enmEvent);
     
    451451 * @param   ...         Message arguments.
    452452 */
    453 DBGFR3DECL(int) DBGFR3EventSrc(PVM pVM, DBGFEVENTTYPE enmEvent, const char *pszFile, unsigned uLine, const char *pszFunction, const char *pszFormat, ...)
     453VMMR3DECL(int) DBGFR3EventSrc(PVM pVM, DBGFEVENTTYPE enmEvent, const char *pszFile, unsigned uLine, const char *pszFunction, const char *pszFormat, ...)
    454454{
    455455    va_list args;
     
    473473 * @param   args        Message arguments.
    474474 */
    475 DBGFR3DECL(int) DBGFR3EventSrcV(PVM pVM, DBGFEVENTTYPE enmEvent, const char *pszFile, unsigned uLine, const char *pszFunction, const char *pszFormat, va_list args)
     475VMMR3DECL(int) DBGFR3EventSrcV(PVM pVM, DBGFEVENTTYPE enmEvent, const char *pszFile, unsigned uLine, const char *pszFunction, const char *pszFormat, va_list args)
    476476{
    477477    int rc = dbgfR3EventPrologue(pVM, enmEvent);
     
    512512 * @param   pszMsg2     Second assertion message.
    513513 */
    514 DBGFR3DECL(int) DBGFR3EventAssertion(PVM pVM, DBGFEVENTTYPE enmEvent, const char *pszMsg1, const char *pszMsg2)
     514VMMR3DECL(int) DBGFR3EventAssertion(PVM pVM, DBGFEVENTTYPE enmEvent, const char *pszMsg1, const char *pszMsg2)
    515515{
    516516    int rc = dbgfR3EventPrologue(pVM, enmEvent);
     
    537537 * @param   enmEvent    DBGFEVENT_BREAKPOINT_HYPER or DBGFEVENT_BREAKPOINT.
    538538 */
    539 DBGFR3DECL(int) DBGFR3EventBreakpoint(PVM pVM, DBGFEVENTTYPE enmEvent)
     539VMMR3DECL(int) DBGFR3EventBreakpoint(PVM pVM, DBGFEVENTTYPE enmEvent)
    540540{
    541541    int rc = dbgfR3EventPrologue(pVM, enmEvent);
     
    801801 * @param   pVM     VM Handle.
    802802 */
    803 DBGFR3DECL(int) DBGFR3Attach(PVM pVM)
     803VMMR3DECL(int) DBGFR3Attach(PVM pVM)
    804804{
    805805    /*
     
    868868 * @param   pVM     VM Handle.
    869869 */
    870 DBGFR3DECL(int) DBGFR3Detach(PVM pVM)
     870VMMR3DECL(int) DBGFR3Detach(PVM pVM)
    871871{
    872872    LogFlow(("DBGFR3Detach:\n"));
     
    916916 * @param   ppEvent     Where to store the event pointer.
    917917 */
    918 DBGFR3DECL(int) DBGFR3EventWait(PVM pVM, unsigned cMillies, PCDBGFEVENT *ppEvent)
     918VMMR3DECL(int) DBGFR3EventWait(PVM pVM, unsigned cMillies, PCDBGFEVENT *ppEvent)
    919919{
    920920    /*
     
    948948 * @param   pVM     VM handle.
    949949 */
    950 DBGFR3DECL(int) DBGFR3Halt(PVM pVM)
     950VMMR3DECL(int) DBGFR3Halt(PVM pVM)
    951951{
    952952    /*
     
    975975 * @param   pVM     VM handle.
    976976 */
    977 DBGFR3DECL(bool) DBGFR3IsHalted(PVM pVM)
     977VMMR3DECL(bool) DBGFR3IsHalted(PVM pVM)
    978978{
    979979    AssertReturn(pVM->dbgf.s.fAttached, false);
     
    993993 * @param   pVM     VM handle.
    994994 */
    995 DBGFR3DECL(bool) DBGFR3CanWait(PVM pVM)
     995VMMR3DECL(bool) DBGFR3CanWait(PVM pVM)
    996996{
    997997    AssertReturn(pVM->dbgf.s.fAttached, false);
     
    10081008 * @param   pVM     VM handle.
    10091009 */
    1010 DBGFR3DECL(int) DBGFR3Resume(PVM pVM)
     1010VMMR3DECL(int) DBGFR3Resume(PVM pVM)
    10111011{
    10121012    /*
     
    10361036 * @param   pVM     VM handle.
    10371037 */
    1038 DBGFR3DECL(int) DBGFR3Step(PVM pVM)
     1038VMMR3DECL(int) DBGFR3Step(PVM pVM)
    10391039{
    10401040    /*
     
    10641064 * @thread  EMT
    10651065 */
    1066 DBGFR3DECL(int) DBGFR3PrgStep(PVM pVM)
     1066VMMR3DECL(int) DBGFR3PrgStep(PVM pVM)
    10671067{
    10681068    VM_ASSERT_EMT(pVM);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette