diff options
author | Matthew Newhook <matthew@zeroc.com> | 2007-06-12 10:13:25 +0800 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2007-06-12 10:13:25 +0800 |
commit | 8d0b6716c8fcc9c8aa55808522990c8316531d02 (patch) | |
tree | 573615b0b21595adbe27f579323e95ea35d7fd17 /cpp | |
parent | http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=2231 (diff) | |
download | ice-8d0b6716c8fcc9c8aa55808522990c8316531d02.tar.bz2 ice-8d0b6716c8fcc9c8aa55808522990c8316531d02.tar.xz ice-8d0b6716c8fcc9c8aa55808522990c8316531d02.zip |
http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=2231
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/demo/Freeze/customEvictor/Client.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/demo/Freeze/customEvictor/Client.cpp b/cpp/demo/Freeze/customEvictor/Client.cpp index e11ab96f351..07e576ce3e0 100644 --- a/cpp/demo/Freeze/customEvictor/Client.cpp +++ b/cpp/demo/Freeze/customEvictor/Client.cpp @@ -160,13 +160,13 @@ WarehouseClient::run(int argc, char* argv[]) rt[i] = new ReaderThread(anItem); rt[i]->start(); } - + wt->getThreadControl().join(); for(i = 0; i < readerCount; ++i) { rt[i]->getThreadControl().join(); } - + // // Display results: // @@ -183,7 +183,7 @@ WarehouseClient::run(int argc, char* argv[]) if(rpt > 0) { cout << "Reader " << i << ": " << rpt << " requests per second (" << 1000.0 / rpt - << " ms per request)" << endl; + << " ms per request)" << endl; } } |