summaryrefslogtreecommitdiff
path: root/performance-tests/Synch-Benchmarks/Options.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'performance-tests/Synch-Benchmarks/Options.cpp')
-rw-r--r--performance-tests/Synch-Benchmarks/Options.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/performance-tests/Synch-Benchmarks/Options.cpp b/performance-tests/Synch-Benchmarks/Options.cpp
index f072f95b498..8e99f08441f 100644
--- a/performance-tests/Synch-Benchmarks/Options.cpp
+++ b/performance-tests/Synch-Benchmarks/Options.cpp
@@ -12,11 +12,14 @@ Options::count (void)
{
size_t total = 0;
+ if (options.verbose ())
+ ACE_DEBUG ((LM_DEBUG, "Thread work count size = %d\n", options.thr_wc_size));
+
for (int i = 0; i < options.thr_wc_size; i++)
{
if (options.thr_work_count[i] != 0)
{
- if (options.verbose ())
+ // if (options.verbose ())
ACE_DEBUG ((LM_DEBUG, "count[%d] = %d\n", i, options.thr_work_count[i]));
total += options.thr_work_count[i];
}