summaryrefslogtreecommitdiff
path: root/ACE/ace/CDR_Stream.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-05-14 11:09:21 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-05-14 11:09:21 +0000
commitde2da3b8ddf1c0ac0371c4819157d9430a62b5fa (patch)
tree01200ccc155cccb42f10491af0a5790da367c15e /ACE/ace/CDR_Stream.cpp
parent7795b14f2c9614ba20cc160a83bb16d8ebb6e968 (diff)
downloadATCD-de2da3b8ddf1c0ac0371c4819157d9430a62b5fa.tar.gz
Wed May 14 11:03:15 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/CDR_Stream.cpp')
-rw-r--r--ACE/ace/CDR_Stream.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/ACE/ace/CDR_Stream.cpp b/ACE/ace/CDR_Stream.cpp
index 954f58642f5..38a80c0fe34 100644
--- a/ACE/ace/CDR_Stream.cpp
+++ b/ACE/ace/CDR_Stream.cpp
@@ -57,7 +57,7 @@ ACE_OutputCDR::ACE_OutputCDR (size_t size,
#if defined (ACE_HAS_MONITOR_POINTS) && (ACE_HAS_MONITOR_POINTS == 1)
ACE_NEW (this->monitor_,
- ACE::MonitorControl::Size_Monitor);
+ ACE::Monitor_Control::Size_Monitor);
this->monitor_->receive (this->total_length ());
#endif /* ACE_HAS_MONITOR_POINTS==1 */
}
@@ -100,7 +100,7 @@ ACE_OutputCDR::ACE_OutputCDR (char *data,
#if defined (ACE_HAS_MONITOR_POINTS) && (ACE_HAS_MONITOR_POINTS == 1)
ACE_NEW (this->monitor_,
- ACE::MonitorControl::Size_Monitor);
+ ACE::Monitor_Control::Size_Monitor);
this->monitor_->receive (this->total_length ());
#endif /* ACE_HAS_MONITOR_POINTS==1 */
}
@@ -132,7 +132,7 @@ ACE_OutputCDR::ACE_OutputCDR (ACE_Data_Block *data_block,
#if defined (ACE_HAS_MONITOR_POINTS) && (ACE_HAS_MONITOR_POINTS == 1)
ACE_NEW (this->monitor_,
- ACE::MonitorControl::Size_Monitor);
+ ACE::Monitor_Control::Size_Monitor);
this->monitor_->receive (this->total_length ());
#endif /* ACE_HAS_MONITOR_POINTS==1 */
}
@@ -161,7 +161,7 @@ ACE_OutputCDR::ACE_OutputCDR (ACE_Message_Block *data,
#if defined (ACE_HAS_MONITOR_POINTS) && (ACE_HAS_MONITOR_POINTS == 1)
ACE_NEW (this->monitor_,
- ACE::MonitorControl::Size_Monitor);
+ ACE::Monitor_Control::Size_Monitor);
this->monitor_->receive (this->total_length ());
#endif /* ACE_HAS_MONITOR_POINTS==1 */
}
@@ -864,7 +864,7 @@ ACE_InputCDR::ACE_InputCDR (const char *buf,
#if defined (ACE_HAS_MONITOR_POINTS) && (ACE_HAS_MONITOR_POINTS == 1)
ACE_NEW (this->monitor_,
- ACE::MonitorControl::Size_Monitor);
+ ACE::Monitor_Control::Size_Monitor);
this->monitor_->receive (bufsiz);
#endif /* ACE_HAS_MONITOR_POINTS==1 */
}
@@ -883,7 +883,7 @@ ACE_InputCDR::ACE_InputCDR (size_t bufsiz,
{
#if defined (ACE_HAS_MONITOR_POINTS) && (ACE_HAS_MONITOR_POINTS == 1)
ACE_NEW (this->monitor_,
- ACE::MonitorControl::Size_Monitor);
+ ACE::Monitor_Control::Size_Monitor);
this->monitor_->receive (bufsiz);
#endif /* ACE_HAS_MONITOR_POINTS==1 */
}
@@ -902,7 +902,7 @@ ACE_InputCDR::ACE_InputCDR (const ACE_Message_Block *data,
{
#if defined (ACE_HAS_MONITOR_POINTS) && (ACE_HAS_MONITOR_POINTS == 1)
ACE_NEW (this->monitor_,
- ACE::MonitorControl::Size_Monitor);
+ ACE::Monitor_Control::Size_Monitor);
this->monitor_->receive (this->start_.total_size ());
#endif /* ACE_HAS_MONITOR_POINTS==1 */
@@ -924,7 +924,7 @@ ACE_InputCDR::ACE_InputCDR (ACE_Data_Block *data,
{
#if defined (ACE_HAS_MONITOR_POINTS) && (ACE_HAS_MONITOR_POINTS == 1)
ACE_NEW (this->monitor_,
- ACE::MonitorControl::Size_Monitor);
+ ACE::Monitor_Control::Size_Monitor);
this->monitor_->receive (data->size ());
#endif /* ACE_HAS_MONITOR_POINTS==1 */
}
@@ -957,7 +957,7 @@ ACE_InputCDR::ACE_InputCDR (ACE_Data_Block *data,
#if defined (ACE_HAS_MONITOR_POINTS) && (ACE_HAS_MONITOR_POINTS == 1)
ACE_NEW (this->monitor_,
- ACE::MonitorControl::Size_Monitor);
+ ACE::Monitor_Control::Size_Monitor);
this->monitor_->receive (data->size ());
#endif /* ACE_HAS_MONITOR_POINTS==1 */
}
@@ -999,7 +999,7 @@ ACE_InputCDR::ACE_InputCDR (const ACE_InputCDR& rhs,
#if defined (ACE_HAS_MONITOR_POINTS) && (ACE_HAS_MONITOR_POINTS == 1)
ACE_NEW (this->monitor_,
- ACE::MonitorControl::Size_Monitor);
+ ACE::Monitor_Control::Size_Monitor);
this->monitor_->receive (this->start_.total_size ());
#endif /* ACE_HAS_MONITOR_POINTS==1 */
}
@@ -1046,7 +1046,7 @@ ACE_InputCDR::ACE_InputCDR (const ACE_InputCDR& rhs,
#if defined (ACE_HAS_MONITOR_POINTS) && (ACE_HAS_MONITOR_POINTS == 1)
ACE_NEW (this->monitor_,
- ACE::MonitorControl::Size_Monitor);
+ ACE::Monitor_Control::Size_Monitor);
this->monitor_->receive (this->start_.total_size ());
#endif /* ACE_HAS_MONITOR_POINTS==1 */
}
@@ -1075,7 +1075,7 @@ ACE_InputCDR::ACE_InputCDR (const ACE_InputCDR& rhs)
#if defined (ACE_HAS_MONITOR_POINTS) && (ACE_HAS_MONITOR_POINTS == 1)
ACE_NEW (this->monitor_,
- ACE::MonitorControl::Size_Monitor);
+ ACE::Monitor_Control::Size_Monitor);
this->monitor_->receive (this->start_.total_size ());
#endif /* ACE_HAS_MONITOR_POINTS==1 */
}
@@ -1097,7 +1097,7 @@ ACE_InputCDR::ACE_InputCDR (ACE_InputCDR::Transfer_Contents x)
#if defined (ACE_HAS_MONITOR_POINTS) && (ACE_HAS_MONITOR_POINTS == 1)
ACE_NEW (this->monitor_,
- ACE::MonitorControl::Size_Monitor);
+ ACE::Monitor_Control::Size_Monitor);
this->monitor_->receive (this->start_.total_size ());
#endif /* ACE_HAS_MONITOR_POINTS==1 */
}
@@ -1156,7 +1156,7 @@ ACE_InputCDR::ACE_InputCDR (const ACE_OutputCDR& rhs,
#if defined (ACE_HAS_MONITOR_POINTS) && (ACE_HAS_MONITOR_POINTS == 1)
ACE_NEW (this->monitor_,
- ACE::MonitorControl::Size_Monitor);
+ ACE::Monitor_Control::Size_Monitor);
this->monitor_->receive (this->start_.total_size ());
#endif /* ACE_HAS_MONITOR_POINTS==1 */
}