blob: 92a7dd2a1f817c877e43feb42c927cabf4f38549 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/sh
################################################################################
#
# lockgraphs.sh by Michele Dallachiesa -- 2008-05-07 -- v0.1
#
# $FreeBSD$
#
################################################################################
sysctl debug.witness.graphs | awk '
BEGIN {
print "digraph lockgraphs {"
}
NR > 1 && $0 ~ /"Giant"/ {
gsub(","," -> ");
print $0 ";"
}
END {
print "}"
}'
#eof
|