xref: /linux/tools/verification/models/sched/snroc.dot (revision 4f9786035f9e519db41375818e1d0b5f20da2f10)
1*93bac9cfSGabriele Monacodigraph state_automaton {
2*93bac9cfSGabriele Monaco	center = true;
3*93bac9cfSGabriele Monaco	size = "7,11";
4*93bac9cfSGabriele Monaco	{node [shape = plaintext, style=invis, label=""] "__init_other_context"};
5*93bac9cfSGabriele Monaco	{node [shape = ellipse] "other_context"};
6*93bac9cfSGabriele Monaco	{node [shape = plaintext] "other_context"};
7*93bac9cfSGabriele Monaco	{node [shape = plaintext] "own_context"};
8*93bac9cfSGabriele Monaco	"__init_other_context" -> "other_context";
9*93bac9cfSGabriele Monaco	"other_context" [label = "other_context", color = green3];
10*93bac9cfSGabriele Monaco	"other_context" -> "own_context" [ label = "sched_switch_in" ];
11*93bac9cfSGabriele Monaco	"own_context" [label = "own_context"];
12*93bac9cfSGabriele Monaco	"own_context" -> "other_context" [ label = "sched_switch_out" ];
13*93bac9cfSGabriele Monaco	"own_context" -> "own_context" [ label = "sched_set_state" ];
14*93bac9cfSGabriele Monaco	{ rank = min ;
15*93bac9cfSGabriele Monaco		"__init_other_context";
16*93bac9cfSGabriele Monaco		"other_context";
17*93bac9cfSGabriele Monaco	}
18*93bac9cfSGabriele Monaco}
19