Changeset 139 in flair-src for trunk/lib/FlairCore
- Timestamp:
- Feb 14, 2017, 5:02:06 PM (8 years ago)
- Location:
- trunk/lib/FlairCore/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairCore/src/Thread.cpp
r133 r139 78 78 bool Thread::IsSuspended(void) const { return pimpl_->IsSuspended(); } 79 79 80 bool Thread::IsRunning(void) const { return pimpl_->isRunning; } 81 80 82 void Thread::Resume(void) { pimpl_->Resume(); } 81 83 -
trunk/lib/FlairCore/src/Thread.h
r15 r139 176 176 */ 177 177 bool IsSuspended(void) const; 178 179 /*! 180 * \brief Is the thread running? 181 * 182 * \return true if thread is running (call to Start). A suspended thread is running. 183 * 184 */ 185 bool IsRunning(void) const; 178 186 179 187 /*! -
trunk/lib/FlairCore/src/unexported/Thread_impl.h
r15 r139 49 49 int WaitUpdate(const flair::core::IODevice *device); 50 50 bool period_set; 51 bool isRunning; 51 52 52 53 private: … … 58 59 uint64_t cpt; 59 60 flair::core::Time period; 60 bool isRunning;61 61 bool tobestopped; 62 62 bool is_suspended;
Note:
See TracChangeset
for help on using the changeset viewer.