git-svn-id: https://svn.microneil.com/svn/CodeDweller/branches/adeniz_1@49 d34b734f-a00e-4b39-a726-e4eeb87269abadeniz_1
bool Thread::isBad() { return BadFlag; } // Return BadFlag state. | bool Thread::isBad() { return BadFlag; } // Return BadFlag state. | ||||
const string Thread::MyFault() { return BadWhat; } // Return exception Bad fault if any. | const string Thread::MyFault() { return BadWhat; } // Return exception Bad fault if any. | ||||
const string Thread::MyName() { return MyThreadName; } // Return the instance name if any. | |||||
const string Thread::MyName() const { return MyThreadName; } // Return the instance name if any. | |||||
const ThreadType& Thread::MyType() { return MyThreadType; } // Return the instance Thread Type. | const ThreadType& Thread::MyType() { return MyThreadType; } // Return the instance Thread Type. | ||||
const ThreadState& Thread::MyState() { return (*MyThreadState); } // Thread state for this instance. | const ThreadState& Thread::MyState() { return (*MyThreadState); } // Thread state for this instance. | ||||
bool isBad(); // Return the Bad flag state. | bool isBad(); // Return the Bad flag state. | ||||
const string MyFault(); // Return exception Bad fault if any. | const string MyFault(); // Return exception Bad fault if any. | ||||
const string MyName(); // The thread's name. | |||||
const string MyName() const; // The thread's name. | |||||
const ThreadType& MyType(); // Thread type for this thread. | const ThreadType& MyType(); // Thread type for this thread. | ||||
const ThreadState& MyState(); // Returns the current thread state. | const ThreadState& MyState(); // Returns the current thread state. | ||||
const ThreadState& CurrentThreadState(); // Returns the current thread state. | const ThreadState& CurrentThreadState(); // Returns the current thread state. |