Changeset 93164 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Jan 10, 2022 11:06:40 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r93163 r93164 3304 3304 int rcGuest = VINF_SUCCESS; 3305 3305 3306 uint32_t msTimeout = 30 * 1000; /* 30s timeout by default */3307 for (int i = 0; i < 10; i++)3306 uint32_t msTimeout = RT_MS_10SEC; /* 10s timeout by default */ 3307 for (int i = 0; i < 3; i++) 3308 3308 { 3309 3309 if (i) … … 3311 3311 LogRel(("Guest Control: Closing session '%s' timed out (%RU32s timeout, attempt %d/10), retrying ...\n", 3312 3312 mData.mSession.mName.c_str(), msTimeout / RT_MS_1SEC, i + 1)); 3313 msTimeout += RT_MS_ 10SEC; /* Slightly increase the timeout. */3313 msTimeout += RT_MS_5SEC; /* Slightly increase the timeout. */ 3314 3314 } 3315 3315
Note:
See TracChangeset
for help on using the changeset viewer.