summaryrefslogtreecommitdiff
path: root/TAO/tao/Transport_Cache_Manager_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Transport_Cache_Manager_T.h')
-rw-r--r--TAO/tao/Transport_Cache_Manager_T.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/TAO/tao/Transport_Cache_Manager_T.h b/TAO/tao/Transport_Cache_Manager_T.h
index d40cdabdf5c..871f0a65d80 100644
--- a/TAO/tao/Transport_Cache_Manager_T.h
+++ b/TAO/tao/Transport_Cache_Manager_T.h
@@ -99,8 +99,8 @@ namespace TAO
Transport_Cache_Manager_T (
int percent,
purging_strategy* purging_strategy,
- int cache_maximum,
- int locked,
+ size_t cache_maximum,
+ bool locked,
const char *orbid);
/// Destructor
@@ -259,6 +259,9 @@ namespace TAO
/// The lock that is used by the cache map
ACE_Lock *cache_lock_;
+ /// Maximum size of the cache
+ size_t cache_maximum_;
+
#if defined (TAO_HAS_MONITOR_POINTS) && (TAO_HAS_MONITOR_POINTS == 1)
/// Connection cache purge monitor.
ACE::Monitor_Control::Size_Monitor *purge_monitor_;