diff options
author | Michi Henning <michi@zeroc.com> | 2003-07-02 00:53:13 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2003-07-02 00:53:13 +0000 |
commit | 05ecde31cd6bde0ce1eebb7a7b123d4b3a23712d (patch) | |
tree | 104c46e23c2621f45f17fcf017569818ee795332 /cpp/src/Ice/EvictorBase.cpp | |
parent | comments (diff) | |
download | ice-05ecde31cd6bde0ce1eebb7a7b123d4b3a23712d.tar.bz2 ice-05ecde31cd6bde0ce1eebb7a7b123d4b3a23712d.tar.xz ice-05ecde31cd6bde0ce1eebb7a7b123d4b3a23712d.zip |
Changed implementation of Ice.MessageSizeMax property: no longer a static
value now and initialized in Instance.
Diffstat (limited to 'cpp/src/Ice/EvictorBase.cpp')
-rw-r--r-- | cpp/src/Ice/EvictorBase.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/cpp/src/Ice/EvictorBase.cpp b/cpp/src/Ice/EvictorBase.cpp index 07de5ebdfb0..cd6cbb7e0d9 100644 --- a/cpp/src/Ice/EvictorBase.cpp +++ b/cpp/src/Ice/EvictorBase.cpp @@ -93,7 +93,6 @@ Ice::EvictorBase::locate(const Current& c, LocalObjectPtr& cookie) out << "category`" << c.id.category << "'"; } out << ": cache hit for name `" << c.id.name << "'"; - out.flush(); } } else @@ -125,7 +124,6 @@ Ice::EvictorBase::locate(const Current& c, LocalObjectPtr& cookie) out << "category`" << c.id.category << "'"; } out << ": cache miss for name `" << c.id.name << "'"; - out.flush(); } } @@ -187,7 +185,6 @@ Ice::EvictorBase::deactivate(const string& category) double total = (double)_hits + (double)_misses; double ratio = total == 0 ? 100 : ((double)_hits * 100 / total); out << ", %hits = " << fixed << setprecision(2) << ratio << "%"; - out.flush(); } _size = 0; @@ -221,7 +218,6 @@ Ice::EvictorBase::evictServants() out << "category `" << (*p)->second->id.category << "'"; } out << ": evicting `" << (*p)->second->id.name << "'"; - out.flush(); } evict((*p)->second->id, |