/share/examples/witness/lockgraphs.sh
https://bitbucket.org/freebsd/freebsd-head/ · Shell · 24 lines · 13 code · 2 blank · 9 comment · 0 complexity · f33f0a53d015957996494dfc0d007fc5 MD5 · raw file
- #!/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