summaryrefslogtreecommitdiff
path: root/www/lib/vis/examples/network/data/dotLanguage/graphvizGallery/process.gv.txt
blob: 34fe9fb5aa6dbe2c7871e5e7f576f8ed824a575c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
graph G {
	run -- intr;
	intr -- runbl;
	runbl -- run;
	run -- kernel;
	kernel -- zombie;
	kernel -- sleep;
	kernel -- runmem;
	sleep -- swap;
	swap -- runswap;
	runswap -- new;
	runswap -- runmem;
	new -- runmem;
	sleep -- runmem;
}