Changeset 63567 in vbox for trunk/src/VBox/ValidationKit/utils
- Timestamp:
- Aug 16, 2016 2:06:54 PM (8 years ago)
- Location:
- trunk/src/VBox/ValidationKit/utils/usb
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/usb/UsbTestService.cpp
r62872 r63567 1373 1373 * Config file location. 1374 1374 */ 1375 /** @todo :Improve */1375 /** @todo Improve */ 1376 1376 #if !defined(RT_OS_WINDOWS) 1377 1377 strcpy(g_szCfgPath, "/etc/uts.conf"); -
trunk/src/VBox/ValidationKit/utils/usb/UsbTestServiceGadget.cpp
r62471 r63567 174 174 175 175 AssertPtrReturn(pThis, VERR_INVALID_HANDLE); 176 return 1; /** @todo :Current assumption which is true on Linux with dummy_hcd. */176 return 1; /** @todo Current assumption which is true on Linux with dummy_hcd. */ 177 177 } 178 178 -
trunk/src/VBox/ValidationKit/utils/usb/UsbTestServiceGadgetHost.cpp
r62471 r63567 85 85 static void utsGadgetHostDestroy(PUTSGADGETHOSTINT pThis) 86 86 { 87 /** @todo :Remove all gadgets. */87 /** @todo Remove all gadgets. */ 88 88 pThis->pHstIf->pfnTerm((PUTSGADGETHOSTTYPEINT)&pThis->abIfInst[0]); 89 89 RTMemFree(pThis); -
trunk/src/VBox/ValidationKit/utils/usb/UsbTestServiceGadgetHostUsbIp.cpp
r62872 r63567 110 110 if ( ProcSts.enmReason != RTPROCEXITREASON_NORMAL 111 111 || ProcSts.iStatus != 0) 112 rc = VERR_UNRESOLVED_ERROR; /** @todo :Log and give finer grained status code. */112 rc = VERR_UNRESOLVED_ERROR; /** @todo Log and give finer grained status code. */ 113 113 } 114 114 } -
trunk/src/VBox/ValidationKit/utils/usb/UsbTestServicePlatform-linux.cpp
r62471 r63567 282 282 if (RT_SUCCESS(rc)) 283 283 { 284 const char *apszArg[] = { "num=20" }; /** @todo :Make configurable from config. */284 const char *apszArg[] = { "num=20" }; /** @todo Make configurable from config. */ 285 285 rc = utsPlatformModuleLoad("dummy_hcd", &apszArg[0], RT_ELEMENTS(apszArg)); 286 286 if (RT_SUCCESS(rc)) … … 332 332 if ( ProcSts.enmReason != RTPROCEXITREASON_NORMAL 333 333 || ProcSts.iStatus != 0) 334 rc = VERR_UNRESOLVED_ERROR; /** @todo :Log and give finer grained status code. */334 rc = VERR_UNRESOLVED_ERROR; /** @todo Log and give finer grained status code. */ 335 335 } 336 336 } … … 360 360 if ( ProcSts.enmReason != RTPROCEXITREASON_NORMAL 361 361 || ProcSts.iStatus != 0) 362 rc = VERR_UNRESOLVED_ERROR; /** @todo :Log and give finer grained status code. */362 rc = VERR_UNRESOLVED_ERROR; /** @todo Log and give finer grained status code. */ 363 363 } 364 364 }
Note:
See TracChangeset
for help on using the changeset viewer.