Current Path : /compat/linux/proc/68247/cwd/usr/src/share/examples/witness/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //compat/linux/proc/68247/cwd/usr/src/share/examples/witness/lockgraphs.sh |
#!/bin/sh ################################################################################ # # lockgraphs.sh by Michele Dallachiesa -- 2008-05-07 -- v0.1 # # $FreeBSD: release/9.1.0/share/examples/witness/lockgraphs.sh 178842 2008-05-07 21:50:17Z attilio $ # ################################################################################ sysctl debug.witness.graphs | awk ' BEGIN { print "digraph lockgraphs {" } NR > 1 && $0 ~ /"Giant"/ { gsub(","," -> "); print $0 ";" } END { print "}" }' #eof