summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2002-05-06 18:38:56 +0000
committerbala <balanatarajan@users.noreply.github.com>2002-05-06 18:38:56 +0000
commit006e6f84f163bbf1ac6fa8bbec6b0102e3f4ee0b (patch)
tree60f704de8f61da4b3308e21e48e7991bb365a91d
parentbf741d2c1c6e068919bd2a618721afca1efa8419 (diff)
downloadATCD-006e6f84f163bbf1ac6fa8bbec6b0102e3f4ee0b.tar.gz
ChangeLogTag: Mon May 6 13:37:45 2002 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLogs/ChangeLog-02a5
-rw-r--r--ChangeLogs/ChangeLog-03a5
-rwxr-xr-xbin/generate_performance_chart.sh2
4 files changed, 16 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d0b558a833f..3b43a41b2f5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon May 6 13:37:45 2002 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * bin/generate_performance_chart.sh: Changed the range of the y
+ range for the plots.
+
Mon May 6 07:39:22 2002 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
* ace/Message_Queue_T.cpp (notify): Moved int queue_count definition
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index d0b558a833f..3b43a41b2f5 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,8 @@
+Mon May 6 13:37:45 2002 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * bin/generate_performance_chart.sh: Changed the range of the y
+ range for the plots.
+
Mon May 6 07:39:22 2002 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
* ace/Message_Queue_T.cpp (notify): Moved int queue_count definition
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index d0b558a833f..3b43a41b2f5 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,8 @@
+Mon May 6 13:37:45 2002 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * bin/generate_performance_chart.sh: Changed the range of the y
+ range for the plots.
+
Mon May 6 07:39:22 2002 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
* ace/Message_Queue_T.cpp (notify): Moved int queue_count definition
diff --git a/bin/generate_performance_chart.sh b/bin/generate_performance_chart.sh
index b20878817a0..b72311b9338 100755
--- a/bin/generate_performance_chart.sh
+++ b/bin/generate_performance_chart.sh
@@ -9,7 +9,7 @@ gnuplot <<_EOF_ >/dev/null 2>&1
set xlabel 'Date (YYYYMMDD)'
set ylabel 'Throughput (Requests/Second)'
set terminal png small color
- set yrange [0:10000]
+ set yrange [2000:12000]
set output "$2"
plot '$1' using 1:2 title '$3' w l
exit