Changeset 27051 in vbox for trunk/src/VBox
- Timestamp:
- Mar 4, 2010 6:35:42 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 58366
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-solaris.c
r27047 r27051 671 671 else 672 672 { 673 if (rc != VERR_INTERRUPTED) 674 LogRel((DEVICE_NAME "::IOCtl: VBoxGuestCommonIOCtl failed. Cmd=%#x rc=%d\n", Cmd, rc)); 675 else 676 Log((DEVICE_NAME "::IOCtl: VBoxGuestCommonIOCtl failed. rc=%d\n", rc)); 673 /* 674 * We Log() instead of LogRel() here because VBOXGUEST_IOCTL_WAITEVENT can return VERR_TIMEOUT, 675 * VBOXGUEST_IOCTL_CANCEL_ALL_EVENTS can return VERR_INTERRUPTED and possibly more in the future; 676 * which are not really failures that require logging. 677 */ 678 Log((DEVICE_NAME "::IOCtl: VBoxGuestCommonIOCtl failed. Cmd=%#x rc=%d\n", Cmd, rc)); 677 679 rc = RTErrConvertToErrno(rc); 678 680 }
Note:
See TracChangeset
for help on using the changeset viewer.