Changeset 63182 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Aug 8, 2016 4:16:42 PM (8 years ago)
- Location:
- trunk/src/VBox/Main/src-server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/VFSExplorerImpl.cpp
r62485 r63182 413 413 414 414 //this function delete task in case of exceptions, so there is no need in the call of delete operator 415 rc = pTask->createThread (NULL,RTTHREADTYPE_MAIN_HEAVY_WORKER);415 rc = pTask->createThreadWithType(RTTHREADTYPE_MAIN_HEAVY_WORKER); 416 416 } 417 417 catch (HRESULT aRC) … … 531 531 532 532 //this function delete task in case of exceptions, so there is no need in the call of delete operator 533 rc = pTask->createThread (NULL,RTTHREADTYPE_MAIN_HEAVY_WORKER);533 rc = pTask->createThreadWithType(RTTHREADTYPE_MAIN_HEAVY_WORKER); 534 534 } 535 535 catch (HRESULT aRC) -
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp
r63181 r63182 2567 2567 2568 2568 //this function delete pTask in case of exceptions, so there is no need in the call of delete operator 2569 hr = pTask->createThread (NULL,RTTHREADTYPE_MAIN_WORKER);2569 hr = pTask->createThreadWithType(RTTHREADTYPE_MAIN_WORKER); 2570 2570 2571 2571 }
Note:
See TracChangeset
for help on using the changeset viewer.