File: nrp.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 (29 lines) | stat: -rw-r--r-- 1,430 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
digraph state_automaton {
	center = true;
	size = "7,11";
	{node [shape = doublecircle] "any_thread_running"};
	{node [shape = circle] "any_thread_running"};
	{node [shape = circle] "nested_preempt"};
	{node [shape = plaintext, style=invis, label=""] "__init_preempt_irq"};
	{node [shape = circle] "preempt_irq"};
	{node [shape = circle] "rescheduling"};
	"__init_preempt_irq" -> "preempt_irq";
	"any_thread_running" [label = "any_thread_running", color = green3];
	"any_thread_running" -> "any_thread_running" [ label = "schedule_entry\nirq_entry" ];
	"any_thread_running" -> "rescheduling" [ label = "sched_need_resched" ];
	"nested_preempt" [label = "nested_preempt"];
	"nested_preempt" -> "any_thread_running" [ label = "schedule_entry_preempt\nschedule_entry" ];
	"nested_preempt" -> "nested_preempt" [ label = "irq_entry" ];
	"nested_preempt" -> "preempt_irq" [ label = "sched_need_resched" ];
	"preempt_irq" [label = "preempt_irq"];
	"preempt_irq" -> "nested_preempt" [ label = "schedule_entry_preempt\nschedule_entry" ];
	"preempt_irq" -> "preempt_irq" [ label = "irq_entry\nsched_need_resched" ];
	"rescheduling" [label = "rescheduling"];
	"rescheduling" -> "any_thread_running" [ label = "schedule_entry_preempt\nschedule_entry" ];
	"rescheduling" -> "preempt_irq" [ label = "irq_entry" ];
	"rescheduling" -> "rescheduling" [ label = "sched_need_resched" ];
	{ rank = min ;
		"__init_preempt_irq";
		"preempt_irq";
	}
}