Changeset 21199 in vbox for trunk/src/VBox/Additions/common/VBoxGuest
- Timestamp:
- Jul 3, 2009 1:23:29 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 49502
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-linux.c
r21170 r21199 330 330 { 331 331 bool fTaken = VBoxGuestCommonISR(&g_DevExt); 332 /** @todo if (vboxDev->irqAckRequest->events &333 * VMMDEV_EVENT_MOUSE_POSITION_CHANGED)334 * kill_fasync(&vboxDev->async_queue, SIGIO, POLL_IN);335 */336 332 return IRQ_RETVAL(fTaken); 337 333 } … … 458 454 /* 459 455 * Create the release log. 456 * (We do that here instead of common code because we want to log . 457 * early failures using the LogRel macro.) 460 458 */ 461 459 rc = RTLogCreate(&pRelLogger, 0 /* fFlags */, "all", … … 647 645 * Copy ioctl data and output buffer back to user space. 648 646 */ 649 if (RT_ LIKELY(!rc))647 if (RT_SUCCESS(rc)) 650 648 { 651 649 rc = 0; … … 668 666 { 669 667 Log(("vboxguestLinuxIOCtl: pFilp=%p uCmd=%#x ulArg=%p failed, rc=%d\n", pFilp, uCmd, (void *)ulArg, rc)); 670 rc = vboxguestLinuxConvertToNegErrno(rc);668 rc = -rc; Assert(rc > 0); /* Positive returns == negated VBox error status codes. */ 671 669 } 672 670 }
Note:
See TracChangeset
for help on using the changeset viewer.