Changeset 21042
- Timestamp:
- 02/23/08 08:09:17 (9 months ago)
- Files:
-
- juggler/trunk/modules/vapor/vpr/Thread/ThreadPool.cpp (modified) (1 diff)
- juggler/trunk/modules/vapor/vpr/Thread/ThreadPool.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
juggler/trunk/modules/vapor/vpr/Thread/ThreadPool.cpp
r21041 r21042 47 47 namespace vpr 48 48 { 49 50 OneThread::OneThread() 51 : thread(NULL) 52 , next(NULL) 53 , threadWait(0) 54 { 55 /* Do nothing. */ ; 56 } 57 58 OneThread::~OneThread() 59 { 60 /* Do nothing. */ ; 61 } 49 62 50 63 // --------------------------------------------------------------------------- juggler/trunk/modules/vapor/vpr/Thread/ThreadPool.h
r21040 r21042 52 52 * Helper class for vpr::ThreadPool. 53 53 */ 54 class OneThread54 class VPR_CLASS_API OneThread 55 55 { 56 56 public: 57 OneThread() 58 : thread(NULL) 59 , next(NULL) 60 , threadWait(0) 61 { 62 /* Do nothing. */ ; 63 } 57 OneThread(); 64 58 65 ~OneThread() 66 { 67 /* Do nothing. */ ; 68 } 59 ~OneThread(); 69 60 70 61 public:
