VirtualBox

Changeset 28516 in vbox for trunk/src/VBox/Additions/common


Ignore:
Timestamp:
Apr 20, 2010 11:52:06 AM (15 years ago)
Author:
vboxsync
Message:

VBoxGuest: be less verbose on timeouts

Location:
trunk/src/VBox/Additions/common
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest.cpp

    r27967 r28516  
    17791779    else
    17801780    {
    1781         if (rc != VERR_INTERRUPTED)
     1781        if (   rc != VERR_INTERRUPTED
     1782            && rc != VERR_TIMEOUT)
    17821783            LogRel(("VBoxGuestCommonIOCtl: HGCM_CALL: %s Failed. rc=%Rrc.\n", f32bit ? "32" : "64", rc));
    17831784        else
  • trunk/src/VBox/Additions/common/VBoxGuestLib/HGCMInternal.cpp

    r26425 r28516  
    906906            else
    907907            {
    908                 if (rc != VERR_INTERRUPTED)
     908                if (   rc != VERR_INTERRUPTED
     909                    || rc != VERR_TIMEOUT)
    909910                    LogRel(("VbglR0HGCMInternalCall: vbglR0HGCMInternalDoCall failed. rc=%Rrc\n", rc));
    910911            }
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