File: sssw.dot

package info (click to toggle)
linux 6.18.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,742,212 kB
  • sloc: ansic: 26,783,651; asm: 272,129; sh: 148,799; python: 79,242; makefile: 57,742; perl: 36,527; xml: 19,542; cpp: 5,911; yacc: 4,939; lex: 2,950; awk: 1,607; sed: 30; ruby: 25
file content (30 lines) | stat: -rw-r--r-- 1,533 bytes parent folder | download | duplicates (17)
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
digraph state_automaton {
	center = true;
	size = "7,11";
	{node [shape = plaintext, style=invis, label=""] "__init_runnable"};
	{node [shape = doublecircle] "runnable"};
	{node [shape = circle] "runnable"};
	{node [shape = circle] "signal_wakeup"};
	{node [shape = circle] "sleepable"};
	{node [shape = circle] "sleeping"};
	"__init_runnable" -> "runnable";
	"runnable" [label = "runnable", color = green3];
	"runnable" -> "runnable" [ label = "sched_set_state_runnable\nsched_wakeup\nsched_switch_in\nsched_switch_yield\nsched_switch_preempt\nsignal_deliver" ];
	"runnable" -> "sleepable" [ label = "sched_set_state_sleepable" ];
	"runnable" -> "sleeping" [ label = "sched_switch_blocking" ];
	"signal_wakeup" [label = "signal_wakeup"];
	"signal_wakeup" -> "runnable" [ label = "signal_deliver" ];
	"signal_wakeup" -> "signal_wakeup" [ label = "sched_switch_in\nsched_switch_preempt\nsched_switch_yield\nsched_wakeup" ];
	"signal_wakeup" -> "sleepable" [ label = "sched_set_state_sleepable" ];
	"sleepable" [label = "sleepable"];
	"sleepable" -> "runnable" [ label = "sched_set_state_runnable\nsched_wakeup" ];
	"sleepable" -> "signal_wakeup" [ label = "sched_switch_yield" ];
	"sleepable" -> "sleepable" [ label = "sched_set_state_sleepable\nsched_switch_in\nsched_switch_preempt\nsignal_deliver" ];
	"sleepable" -> "sleeping" [ label = "sched_switch_suspend\nsched_switch_blocking" ];
	"sleeping" [label = "sleeping"];
	"sleeping" -> "runnable" [ label = "sched_wakeup" ];
	{ rank = min ;
		"__init_runnable";
		"runnable";
	}
}