summaryrefslogtreecommitdiff
path: root/TAO/tao/Transport.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Transport.cpp')
-rw-r--r--TAO/tao/Transport.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/tao/Transport.cpp b/TAO/tao/Transport.cpp
index a65f98b9820..f5c1fa36300 100644
--- a/TAO/tao/Transport.cpp
+++ b/TAO/tao/Transport.cpp
@@ -16,6 +16,7 @@
#include "Asynch_Queued_Message.h"
#include "Flushing_Strategy.h"
#include "Transport_Cache_Manager.h"
+#include "Thread_Lane_Resources.h"
#include "debug.h"
#include "Resume_Handle.h"
@@ -27,7 +28,6 @@
ACE_RCSID(tao, Transport, "$Id$")
-
TAO_Synch_Refcountable::TAO_Synch_Refcountable (ACE_Lock *lock, int refcount)
: ACE_Refcountable (refcount)
, refcount_lock_ (lock)
@@ -118,7 +118,7 @@ TAO_Transport::~TAO_Transport (void)
// outside the TAO_Transport.
if (this->cache_map_entry_ != 0)
{
- this->orb_core_->transport_cache ()->purge_entry (
+ this->orb_core_->lane_resources ().transport_cache ().purge_entry (
this->cache_map_entry_);
}
}
@@ -602,12 +602,12 @@ int
TAO_Transport::recache_transport (TAO_Transport_Descriptor_Interface *desc)
{
// First purge our entry
- this->orb_core_->transport_cache ()->purge_entry (
+ this->orb_core_->lane_resources ().transport_cache ().purge_entry (
this->cache_map_entry_);
// Then add ourselves to the cache
- return this->orb_core_->transport_cache ()->cache_transport (desc,
- this);
+ return this->orb_core_->lane_resources ().transport_cache ().cache_transport (desc,
+ this);
}
void
@@ -616,7 +616,7 @@ TAO_Transport::mark_invalid (void)
// @@ Do we need this method at all??
if (this->cache_map_entry_ != 0)
{
- this->orb_core_->transport_cache ()->mark_invalid (
+ this->orb_core_->lane_resources ().transport_cache ().mark_invalid (
this->cache_map_entry_);
}
}
@@ -626,7 +626,7 @@ TAO_Transport::make_idle (void)
{
if (this->cache_map_entry_ != 0)
{
- return this->orb_core_->transport_cache ()->make_idle (
+ return this->orb_core_->lane_resources ().transport_cache ().make_idle (
this->cache_map_entry_);
}
return -1;
@@ -640,7 +640,7 @@ TAO_Transport::close_connection (void)
// Purge the entry
if (this->cache_map_entry_ != 0)
{
- this->orb_core_->transport_cache ()->purge_entry (
+ this->orb_core_->lane_resources ().transport_cache ().purge_entry (
this->cache_map_entry_);
}
}