VirtualBox

Changeset 55157 in vbox for trunk/include


Ignore:
Timestamp:
Apr 9, 2015 11:30:14 AM (10 years ago)
Author:
vboxsync
Message:

VMM/TM: logrel nits.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/sup.h

    r54874 r55157  
    696696
    697697/**
     698 * Gets the descriptive TSC-delta enum name.
     699 *
     700 * @returns The name.
     701 * @param   pGip      Pointer to the GIP.
     702 */
     703DECLINLINE(const char *) SUPGetGIPTscDeltaModeName(PSUPGLOBALINFOPAGE pGip)
     704{
     705    AssertReturn(pGip, NULL);
     706    switch (pGip->enmUseTscDelta)
     707    {
     708        case SUPGIPUSETSCDELTA_NOT_APPLICABLE:   return "Not Applicable";
     709        case SUPGIPUSETSCDELTA_ZERO_CLAIMED:     return "Zero Claimed";
     710        case SUPGIPUSETSCDELTA_PRACTICALLY_ZERO: return "Pratically Zero";
     711        case SUPGIPUSETSCDELTA_ROUGHLY_ZERO:     return "Roughly Zero";
     712        case SUPGIPUSETSCDELTA_NOT_ZERO:         return "Not Zero";
     713        default:                                 return "???";
     714    }
     715}
     716
     717
     718/**
    698719 * Request for generic VMMR0Entry calls.
    699720 */
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