Changeset 59318 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jan 12, 2016 4:19:31 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 104984
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/ThreadTask.cpp
r59136 r59318 20 20 #include "ThreadTask.h" 21 21 22 /** @todo r=bird: DOCUMENTATION!! 'ING DOCUMENTATION!! THIS 'ING FUNCTION 23 * CONSUMES THE this OBJECTED AND YOU AREN'T EXACTLY 'ING TELLING 24 * ANYBODY. THAT IS REALLY NICE OF YOU. */ 22 25 HRESULT ThreadTask::createThread(PRTTHREAD pThread, RTTHREADTYPE enmType) 23 26 { … … 40 43 catch(HRESULT eRC) 41 44 { 45 /** @todo r=bird: only happens in your above throw call. 46 * Makes you wonder why you don't just do if (RT_SUCCESS(vrc)) return S_OK; 47 * else {delete pTask; return E_FAIL;} */ 42 48 rc = eRC; 43 49 delete this; … … 45 51 catch(std::exception& ) 46 52 { 53 /** @todo r=bird: can't happen, RTThreadCreate+Utf8Str doesn't do this. */ 47 54 rc = E_FAIL; 48 55 delete this; … … 50 57 catch(...) 51 58 { 59 /** @todo r=bird: can't happen, RTThreadCreate+Utf8Str doesn't do this. */ 52 60 rc = E_FAIL; 53 61 delete this; … … 72 80 pTask->handler(); 73 81 } 82 /** @todo r=bird: This next stuff here is utterly and totally pointless, as 83 * the handler() method _must_ and _shall_ do this, otherwise there is 84 * no 'ing way we can know about it, since you (a) you always return 85 * VINF_SUCCESS (aka '0'), and (b) the thread isn't waitable even if 86 * you wanted to return anything. It is much preferred to _crash_ and 87 * _burn_ if we fail to catch stuff than quietly ignore it, most 88 * likely the state of the objects involved is butchered by this. At 89 * least AssertLogRel()! Gee. */ 74 90 catch(HRESULT eRC) 75 91 {
Note:
See TracChangeset
for help on using the changeset viewer.