public enum ThreadState
{
    Unknown = -1, // unknown or unitialized - added by Tibor Biro 
    Ready = 0, // ready to execute
    Scheduled = 1, // executor has id
    Started = 2, // executor has thread and is executing
    Finished = 3, // executor has returned the finished thread
    Dead = 4, // returned to owner OR aborted
}

In the source, ThreadState has 5 defined states.  At what points in the
process can thread state be set?  How is a thread in each step of the
process identified as having a particular state?




-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid3432&bid#0486&dat1642
_______________________________________________
Alchemi-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/alchemi-developers

Reply via email to