Changeset 3298
- Timestamp:
- Jul 14, 2009, 5:47:06 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/netp6/src/core/Thread.cc
r3240 r3298 91 91 while( !stopThread ) 92 92 { 93 this->executorMutex_->lock();93 //this->executorMutex_->lock(); 94 94 Executor* executor = this->executor_; 95 this->executorMutex_->unlock();95 //this->executorMutex_->unlock(); 96 96 if( executor ) 97 97 { … … 109 109 this->workerThread_->yield(); 110 110 } 111 this->stopThreadMutex_->lock();111 //this->stopThreadMutex_->lock(); 112 112 stopThread = this->stopThread_; 113 this->stopThreadMutex_->unlock();113 //this->stopThreadMutex_->unlock(); 114 114 } 115 115 }
Note: See TracChangeset
for help on using the changeset viewer.