summaryrefslogtreecommitdiff
path: root/TAO/examples/RTCORBA/Activity/gen_graphs.sh
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/RTCORBA/Activity/gen_graphs.sh')
-rwxr-xr-xTAO/examples/RTCORBA/Activity/gen_graphs.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/TAO/examples/RTCORBA/Activity/gen_graphs.sh b/TAO/examples/RTCORBA/Activity/gen_graphs.sh
new file mode 100755
index 00000000000..50ceee794e1
--- /dev/null
+++ b/TAO/examples/RTCORBA/Activity/gen_graphs.sh
@@ -0,0 +1,16 @@
+#!/bin/sh
+#
+# $Id$
+#
+
+# test.dat test.png test
+#gnuplot <<_EOF_ >/dev/null 2>&1
+/usr/bin/gnuplot <<_EOF_
+ set xlabel 'time (uS)'
+ set ylabel 'Request latency (uS)'
+ set terminal png small color
+ set autoscale
+ set output "$2"
+ plot '$1' using 1:2 title '$3' w l
+ exit
+_EOF_