turns printfs back on
[freebsd-src/fkvm-freebsd.git] / share / examples / witness / lockgraphs.sh
blob92a7dd2a1f817c877e43feb42c927cabf4f38549
1 #!/bin/sh
2 ################################################################################
4 # lockgraphs.sh by Michele Dallachiesa -- 2008-05-07 -- v0.1
6 # $FreeBSD$
8 ################################################################################
10 sysctl debug.witness.graphs | awk '
11 BEGIN {
12 print "digraph lockgraphs {"
15 NR > 1 && $0 ~ /"Giant"/ {
16 gsub(","," -> ");
17 print $0 ";"
20 END {
21 print "}"
24 #eof