Changeset 33595 in vbox for trunk/src/VBox/HostDrivers
- Timestamp:
- Oct 29, 2010 10:35:00 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 67205
- Location:
- trunk/src/VBox/HostDrivers
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPLib.cpp
r33540 r33595 1500 1500 && strcmp(pszModule, "VMMR0.r0")) 1501 1501 { 1502 AssertMsgFailed(("%s is importing from %s! (expected 'SUPR0.dll' or 'VMMR0.r0', case-sensitiv )\n", pvUser, pszModule));1502 AssertMsgFailed(("%s is importing from %s! (expected 'SUPR0.dll' or 'VMMR0.r0', case-sensitive)\n", pvUser, pszModule)); 1503 1503 return VERR_SYMBOL_NOT_FOUND; 1504 1504 } -
trunk/src/VBox/HostDrivers/Support/SUPR3HardenedMain.cpp
r33540 r33595 664 664 rc = setppriv(PRIV_SET, PRIV_EFFECTIVE, pPrivSet); 665 665 if (rc) 666 supR3HardenedError(rc, false, "SUPR3HardenedMain: failed to set effective sprivilege set.\n");666 supR3HardenedError(rc, false, "SUPR3HardenedMain: failed to set effective privilege set.\n"); 667 667 } 668 668 else -
trunk/src/VBox/HostDrivers/Support/solaris/SUPDrv-solaris.c
r28800 r33595 320 320 "pm-hardware-state", "needs-suspend-resume", sizeof("needs-suspend-resume")); 321 321 if (rc != DDI_PROP_SUCCESS) 322 LogRel((DEVICE_NAME ":Suspend/Resume notification regist eration failed.\n"));322 LogRel((DEVICE_NAME ":Suspend/Resume notification registration failed.\n")); 323 323 324 324 /* -
trunk/src/VBox/HostDrivers/Support/testcase/tstGIP-2.cpp
r28800 r33595 50 50 static const RTGETOPTDEF g_aOptions[] = 51 51 { 52 { "--i nterations",'i', RTGETOPT_REQ_INT32 },52 { "--iterations", 'i', RTGETOPT_REQ_INT32 }, 53 53 { "--hex", 'h', RTGETOPT_REQ_NOTHING }, 54 54 { "--decimal", 'd', RTGETOPT_REQ_NOTHING }, -
trunk/src/VBox/HostDrivers/VBoxNetFlt/linux/VBoxNetFlt-linux.c
r33540 r33595 760 760 if (rc) 761 761 { 762 LogRel(("VBoxNetFlt: Failed to registe d qdisc: %d\n", rc));762 LogRel(("VBoxNetFlt: Failed to registered qdisc: %d\n", rc)); 763 763 return rc; 764 764 } -
trunk/src/VBox/HostDrivers/VBoxUSB/solaris/VBoxUSB-solaris.c
r33540 r33595 3709 3709 mutex_exit(&pState->Mtx); 3710 3710 usb_pipe_isoc_xfer(pPipe, pReq, USB_FLAGS_NOSLEEP); 3711 LogFlow((DEVICE_NAME ":vboxUSBSolarisIsocInXferError resubm mited Isoc. IN request due to immediately unavailable resources.\n"));3711 LogFlow((DEVICE_NAME ":vboxUSBSolarisIsocInXferError resubmitted Isoc. IN request due to immediately unavailable resources.\n")); 3712 3712 3713 3713 return;
Note:
See TracChangeset
for help on using the changeset viewer.