aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xplot_sched12
1 files changed, 11 insertions, 1 deletions
diff --git a/plot_sched b/plot_sched
index b955c85..5c657d0 100755
--- a/plot_sched
+++ b/plot_sched
@@ -102,6 +102,16 @@ case "$KIND" in
102 ;; 102 ;;
103 esac 103 esac
104 ;; 104 ;;
105 gedf)
106 YLABEL="schedulability"
107 YRANGE="set yrange [-0.1:1.1]"
108 PLOT="plot '$CSV1' using 1:2 title 'P-EDF' with linespoints, \
109 '$CSV1' using 1:3 title 'G-EDF [GFB]' with linespoints, \
110 '$CSV1' using 1:4 title 'G-EDF [BAK]' with linespoints, \
111 '$CSV1' using 1:5 title 'G-EDF [BCL]' with linespoints, \
112 '$CSV1' using 1:6 title 'G-EDF [SKB]' with linespoints \
113 "
114 ;;
105 *) 115 *)
106 YLABEL="" 116 YLABEL=""
107 YRANGE="" 117 YRANGE=""
@@ -114,7 +124,7 @@ XRANGE="set xrange [0.5:32.5]; set xtics 0, 2"
114 124
115BASE=`basename $CSV1 | sed -e s/.csv//g -e s/dist=//g ` 125BASE=`basename $CSV1 | sed -e s/.csv//g -e s/dist=//g `
116 126
117echo $BASE 127#echo $BASE
118 128
119if [ "$OUT" == "" ]; then 129if [ "$OUT" == "" ]; then
120 OUT="${BASE}.${EXT}" 130 OUT="${BASE}.${EXT}"