Beginning to restructure the task and thread system.

This defines the thread and task system better.
This commit is contained in:
Jason Travis Smith
2016-06-22 17:17:59 -04:00
parent 28ab99e867
commit 5d4e3ab9fa
6 changed files with 51 additions and 16 deletions

View File

@ -8,7 +8,7 @@ pub enum TaskState
Starting,
/// The state that each Task is in while it is actually
/// being process and running on a thread.
/// being processed and running on a thread.
///
/// The PROCESSING state can only lead to WAITING,
/// FINISHED, or UNKNOWN states.