freebsd-dev/share/examples/witness/lockgraphs.sh
Attilio Rao 29614b3788 Add a new awk script which parses informations returned by the newly
added sysctl debug.witness.graphs and returns all the graphs involving
Giant lock creating an appropriate script in DOT format which can be
plotted immediately.

Submitted by:   Michele Dallachiesa <michele dot dallachiesa at poste dot it>
2008-05-07 21:50:17 +00:00

25 lines
427 B
Bash

#!/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