Revision: 40843
          http://brlcad.svn.sourceforge.net/brlcad/?rev=40843&view=rev
Author:   davidloman
Date:     2010-09-29 16:58:12 +0000 (Wed, 29 Sep 2010)

Log Message:
-----------
When calling ControlledThread::run() directly, runCmd is not set to true, thus 
the run loop exits.  Set runCmd to true in run()

Modified Paths:
--------------
    rt^3/trunk/src/utility/ControlledThread.cxx

Modified: rt^3/trunk/src/utility/ControlledThread.cxx
===================================================================
--- rt^3/trunk/src/utility/ControlledThread.cxx 2010-09-29 16:54:46 UTC (rev 
40842)
+++ rt^3/trunk/src/utility/ControlledThread.cxx 2010-09-29 16:58:12 UTC (rev 
40843)
@@ -70,6 +70,7 @@
                return;
 
        this->runStatus = true;
+       this->runCmd = true;
        this->_run();
        this->runStatus = false;
 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to