|
|
@ -153,7 +153,7 @@ class Thread { |
|
|
|
/// FAKE -- just a dummy placeholder Thread created by the default constructor
|
|
|
|
/// FAKE -- just a dummy placeholder Thread created by the default constructor
|
|
|
|
/// ALIVE -- an actual thread of control exists associated with this thread
|
|
|
|
/// ALIVE -- an actual thread of control exists associated with this thread
|
|
|
|
/// STARTED -- the thread of control has been started
|
|
|
|
/// STARTED -- the thread of control has been started
|
|
|
|
/// DONE -- the thread of control has completed and been joined/detached
|
|
|
|
/// DONE -- the thread of control has completed and been joined
|
|
|
|
/// FAILED -- the thread of control never came alive
|
|
|
|
/// FAILED -- the thread of control never came alive
|
|
|
|
/// MOVED -- contents were moved out and we're no longer tracking them
|
|
|
|
/// MOVED -- contents were moved out and we're no longer tracking them
|
|
|
|
enum ThreadState { FAKE, ALIVE, STARTED, DONE, FAILED, MOVED }; |
|
|
|
enum ThreadState { FAKE, ALIVE, STARTED, DONE, FAILED, MOVED }; |
|
|
|