You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
421 B
14 lines
421 B
digraph {
|
|
Uninitialized -> Initialized
|
|
Initialized -> {Runnable Error}
|
|
Runnable -> Running_Sys
|
|
Running_User -> Running_Sys [label="interrupt"]
|
|
Running_Sys -> Asleep [label="sleep"]
|
|
Running_Sys -> {Error Returned}
|
|
Running_Sys -> Running_User [label="return"]
|
|
Running_Sys -> Preempted [label="preempt"]
|
|
Preempted -> Running_User
|
|
Returned -> Complete [label="exit_success"]
|
|
Asleep -> Runnable [label="wakeup"]
|
|
}
|