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