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.

22 lines
504 B

digraph {
Uninitialized -> Initialized
Initialized -> {Runnable Error}
Runnable -> Running_Sys
Running_User -> Interrupted [label="interrupt"]
Running_User -> Running_Sys [label="syscall"]
Interrupted -> Preempted [label="preempt"]
Interrupted -> Running_User
Running_Sys -> Asleep [label="sleep"]
Running_Sys -> {Error Returned}
Running_Sys -> Running_User [label="return"]
Preempted -> Running_User
Returned -> Complete [label="exit_success"]
Asleep -> Runnable [label="wakeup"]
}