- Timestamp:
- Jun 15, 2020 8:34:33 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibGuestCtrl.cpp
r84837 r84839 1275 1275 const unsigned cGrowthFactor = 2; /* By how much the buffers will grow if they're too small yet. */ 1276 1276 1277 LogRel(("VbglR3GuestCtrlProcGetStart: Start\n")); 1278 1277 1279 do 1278 1280 { … … 1304 1306 if (RT_FAILURE(rc)) 1305 1307 { 1308 LogRel(("VbglR3GuestCtrlProcGetStart: Got %Rrc\n", rc)); 1309 1306 1310 if ( rc == VERR_BUFFER_OVERFLOW 1307 1311 && cRetries++ < cMaxRetries) … … 1319 1323 1320 1324 #undef GROW_STR 1321 LogRel2(("VbglR3GuestCtrlProcGetStart: %Rrc (retry %u, cbCmd=%RU32, cbArgs=%RU32, cbEnv=%RU32)\n", 1322 rc, cRetries, pStartupInfo->cbCmd, pStartupInfo->cbArgs, pStartupInfo->cbEnv)); 1325 LogRel(("VbglR3GuestCtrlProcGetStart: %Rrc (retry %u, cbCmd=%RU32, cbArgs=%RU32, cbEnv=%RU32)\n", 1326 rc, cRetries, pStartupInfo->cbCmd, pStartupInfo->cbArgs, pStartupInfo->cbEnv)); 1327 LogRel(("g_fVbglR3GuestCtrlHavePeekGetCancel=%d\n", g_fVbglR3GuestCtrlHavePeekGetCancel)); 1323 1328 1324 1329 /* Only try another round if we can peek for the next bigger size; otherwise bail out on the bottom. */ … … 1354 1359 VbglR3GuestCtrlProcStartupInfoFree(pStartupInfo); 1355 1360 1361 LogRel(("VbglR3GuestCtrlProcGetStart: Returning %Rrc\n", rc)); 1362 1356 1363 LogFlowFuncLeaveRC(rc); 1357 1364 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.