VirtualBox

Changeset 59318 in vbox for trunk/src/VBox/Main


Ignore:
Timestamp:
Jan 12, 2016 4:19:31 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
104984
Message:

ThreadTask: Review/@todo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-all/ThreadTask.cpp

    r59136 r59318  
    2020#include "ThreadTask.h"
    2121
     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. */
    2225HRESULT ThreadTask::createThread(PRTTHREAD pThread, RTTHREADTYPE enmType)
    2326{
     
    4043    catch(HRESULT eRC)
    4144    {
     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;}   */
    4248        rc = eRC;
    4349        delete this;
     
    4551    catch(std::exception& )
    4652    {
     53        /** @todo r=bird: can't happen, RTThreadCreate+Utf8Str doesn't do this. */
    4754        rc = E_FAIL;
    4855        delete this;
     
    5057    catch(...)
    5158    {
     59        /** @todo r=bird: can't happen, RTThreadCreate+Utf8Str doesn't do this. */
    5260        rc = E_FAIL;
    5361        delete this;
     
    7280        pTask->handler();
    7381    }
     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. */
    7490    catch(HRESULT eRC)
    7591    {
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette