File: sts.dot

package info (click to toggle)
linux 6.17.10-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,734,900 kB
  • sloc: ansic: 26,684,436; asm: 271,195; sh: 147,406; python: 75,980; makefile: 57,306; perl: 36,943; xml: 19,562; cpp: 5,899; yacc: 4,909; lex: 2,943; awk: 1,556; sed: 29; ruby: 25
file content (38 lines) | stat: -rw-r--r-- 1,623 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
digraph state_automaton {
	center = true;
	size = "7,11";
	{node [shape = plaintext, style=invis, label=""] "__init_can_sched"};
	{node [shape = doublecircle] "can_sched"};
	{node [shape = circle] "can_sched"};
	{node [shape = circle] "cant_sched"};
	{node [shape = circle] "disable_to_switch"};
	{node [shape = circle] "enable_to_exit"};
	{node [shape = circle] "in_irq"};
	{node [shape = circle] "scheduling"};
	{node [shape = circle] "switching"};
	"__init_can_sched" -> "can_sched";
	"can_sched" [label = "can_sched", color = green3];
	"can_sched" -> "cant_sched" [ label = "irq_disable" ];
	"can_sched" -> "scheduling" [ label = "schedule_entry" ];
	"cant_sched" [label = "cant_sched"];
	"cant_sched" -> "can_sched" [ label = "irq_enable" ];
	"cant_sched" -> "cant_sched" [ label = "irq_entry" ];
	"disable_to_switch" [label = "disable_to_switch"];
	"disable_to_switch" -> "enable_to_exit" [ label = "irq_enable" ];
	"disable_to_switch" -> "in_irq" [ label = "irq_entry" ];
	"disable_to_switch" -> "switching" [ label = "sched_switch" ];
	"enable_to_exit" [label = "enable_to_exit"];
	"enable_to_exit" -> "can_sched" [ label = "schedule_exit" ];
	"enable_to_exit" -> "enable_to_exit" [ label = "irq_disable\nirq_entry\nirq_enable" ];
	"in_irq" [label = "in_irq"];
	"in_irq" -> "in_irq" [ label = "irq_entry" ];
	"in_irq" -> "scheduling" [ label = "irq_enable" ];
	"scheduling" [label = "scheduling"];
	"scheduling" -> "disable_to_switch" [ label = "irq_disable" ];
	"switching" [label = "switching"];
	"switching" -> "enable_to_exit" [ label = "irq_enable" ];
	{ rank = min ;
		"__init_can_sched";
		"can_sched";
	}
}