diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2010-08-26 18:47:30 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2010-08-26 18:47:30 +0000 |
commit | 539fa94063dff4f418ff69599a66fbb1247bdaf1 (patch) | |
tree | 05396143ccd1f92be3b706b95eb5c43de0f29dda /CIAO/connectors/dds4ccm | |
parent | fde04b5ea7f5cd0a0cf0ad6dae7737d31ea8c471 (diff) | |
download | ATCD-539fa94063dff4f418ff69599a66fbb1247bdaf1.tar.gz |
Thu Aug 26 18:46:22 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* connectors/dds4ccm/tests/DDSEntity/Receiver/Writer_Receiver_exec.cpp:
Added missing return_loan call
Diffstat (limited to 'CIAO/connectors/dds4ccm')
-rw-r--r-- | CIAO/connectors/dds4ccm/tests/DDSEntity/Receiver/Writer_Receiver_exec.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CIAO/connectors/dds4ccm/tests/DDSEntity/Receiver/Writer_Receiver_exec.cpp b/CIAO/connectors/dds4ccm/tests/DDSEntity/Receiver/Writer_Receiver_exec.cpp index 0b037dfee62..25913217bac 100644 --- a/CIAO/connectors/dds4ccm/tests/DDSEntity/Receiver/Writer_Receiver_exec.cpp +++ b/CIAO/connectors/dds4ccm/tests/DDSEntity/Receiver/Writer_Receiver_exec.cpp @@ -147,6 +147,11 @@ namespace CIAO_Writer_Receiver_Impl ACE_DEBUG ((LM_DEBUG, "Take returned %C with %d samples\n", ::CIAO::DDS4CCM::translate_retcode (result), data.length ())); + ::DDS::ReturnCode_t const result_loan = this->reader_->return_loan (data, sample_info_seq); + + ACE_DEBUG ((LM_DEBUG, "Return loan returned %C\n", + ::CIAO::DDS4CCM::translate_retcode (result_loan))); + ::CCM_DDS::DataListenerControl_var lc = this->context_->get_connection_info_out_data_control (); |