diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-06-12 14:38:34 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-06-12 14:38:34 +0000 |
commit | d1a1ef0f00e201f6bb5a90da34f480c1f1cd284a (patch) | |
tree | e7fc0d944bfa2c1800921f56861db2a4bb37d936 /cpp/src/Freeze/ConnectionI.h | |
parent | Fixed bug where allocation could return before the Glacier2 filters were (diff) | |
download | ice-d1a1ef0f00e201f6bb5a90da34f480c1f1cd284a.tar.bz2 ice-d1a1ef0f00e201f6bb5a90da34f480c1f1cd284a.tar.xz ice-d1a1ef0f00e201f6bb5a90da34f480c1f1cd284a.zip |
*** empty log message ***
Diffstat (limited to 'cpp/src/Freeze/ConnectionI.h')
-rw-r--r-- | cpp/src/Freeze/ConnectionI.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cpp/src/Freeze/ConnectionI.h b/cpp/src/Freeze/ConnectionI.h index e801019f33e..9868abe5ba7 100644 --- a/cpp/src/Freeze/ConnectionI.h +++ b/cpp/src/Freeze/ConnectionI.h @@ -72,6 +72,9 @@ public: Ice::Int trace() const; + Ice::Int + txTrace() const; + bool deadlockWarning() const; @@ -83,6 +86,7 @@ private: TransactionIPtr _transaction; std::list<MapHelperI*> _mapList; Ice::Int _trace; + Ice::Int _txTrace; bool _deadlockWarning; }; @@ -129,6 +133,12 @@ ConnectionI::trace() const return _trace; } +inline Ice::Int +ConnectionI::txTrace() const +{ + return _txTrace; +} + inline bool ConnectionI::deadlockWarning() const { |