VirtualBox

Changeset 6475 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Jan 24, 2008 10:55:48 AM (17 years ago)
Author:
vboxsync
Message:

Added the NoDmik() macro.

Location:
trunk/src/VBox/VMM
Files:
3 edited

Legend:

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

    r5999 r6475  
    139139    }
    140140    else
    141         AssertMsgFailed(("Constructor failed with rc=%Vrc pfnCFGMConstructor=%p\n", rc, pfnCFGMConstructor));
     141        NoDmik(AssertMsgFailed(("Constructor failed with rc=%Vrc pfnCFGMConstructor=%p\n", rc, pfnCFGMConstructor)));
    142142
    143143    return rc;
  • trunk/src/VBox/VMM/PDMDevice.cpp

    r6128 r6475  
    908908        if (VBOX_FAILURE(rc))
    909909        {
    910             AssertMsgFailed(("Failed to construct '%s'/%d! %Vra\n", pDevIns->pDevReg->szDeviceName, pDevIns->iInstance, rc));
     910            NoDmik(AssertMsgFailed(("Failed to construct '%s'/%d! %Vra\n", pDevIns->pDevReg->szDeviceName, pDevIns->iInstance, rc)));
    911911            /* because we're damn lazy right now, we'll say that the destructor will be called even if the constructor fails. */
    912912            return rc;
  • trunk/src/VBox/VMM/VM.cpp

    r6448 r6475  
    249249                            }
    250250
    251                             AssertMsgFailed(("vmR3Create failed rc=%Vrc\n", rc));
     251                            NoDmik(AssertMsgFailed(("vmR3Create failed rc=%Vrc\n", rc)));
    252252                        }
    253253                        else
     
    272272                                /* XXX check if there was already an error message set! */
    273273                                pszError = N_("Unknown error creating VM");
    274                                 AssertMsgFailed(("Add error message for rc=%d (%Vrc)\n", rc, rc));
     274                                NoDmik(AssertMsgFailed(("Add error message for rc=%d (%Vrc)\n", rc, rc)));
    275275                        }
    276276                        if (pszError)
     
    26022602    RTLogPrintfV(pszFormat, va3);
    26032603    va_end(va3);
     2604    RTLogPrintf("\n");
    26042605#endif
    26052606
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