You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2010/12/05 01:17:29 UTC

svn commit: r1042268 - /activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/lang/Thread.cpp

Author: tabish
Date: Sun Dec  5 00:17:29 2010
New Revision: 1042268

URL: http://svn.apache.org/viewvc?rev=1042268&view=rev
Log:
Fix the Thread name not getting set.

Modified:
    activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/lang/Thread.cpp

Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/lang/Thread.cpp
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/lang/Thread.cpp?rev=1042268&r1=1042267&r2=1042268&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/lang/Thread.cpp (original)
+++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/lang/Thread.cpp Sun Dec  5 00:17:29 2010
@@ -106,6 +106,7 @@ namespace lang{
             this->parked = false;
             this->unparked = false;
             this->parent = NULL;
+            this->name = name;
         }
 
         ~ThreadProperties() {