summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-29 19:56:42 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-29 19:56:42 +0000
commit0dea210b4f2f7d01a27f07097d85185a91786cd3 (patch)
tree830a6579fe0761cd26d663a8370f6db61c9c031b
parent89f49e5b1b4116ea4b81cdbd124e87b97b416e2c (diff)
downloadATCD-0dea210b4f2f7d01a27f07097d85185a91786cd3.tar.gz
support floating point numbers
-rwxr-xr-xTAO/performance-tests/Cubit/TAO/MT_Cubit/plot2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/performance-tests/Cubit/TAO/MT_Cubit/plot b/TAO/performance-tests/Cubit/TAO/MT_Cubit/plot
index 06f4cb606c3..d83cc92e988 100755
--- a/TAO/performance-tests/Cubit/TAO/MT_Cubit/plot
+++ b/TAO/performance-tests/Cubit/TAO/MT_Cubit/plot
@@ -10,7 +10,7 @@ open (HIGH_LATENCY, "> h") || die "$0: unable to open \"h\"";
open (LOW_LATENCY, "> l") || die "$0: unable to open \"l\"";
while (<>) {
- if (/(\d+) +(\d+) +(\d+) +(\d+) +(\d+)/) {
+ if (/([\d\.]+) +([\d\.]+) +([\d\.]+) +([\d\.]+) +([\d\.]+)/) {
$low_priority_threads = $1;
$high_latency = $2;
$high_jitter = $3;