Skip to content
Snippets Groups Projects
Commit abd3d692 authored by Alessio Igor Bogani's avatar Alessio Igor Bogani
Browse files

Close connection if Write() is executed with buffer != 0

parent f90c7653
No related branches found
No related tags found
No related merge requests found
......@@ -524,15 +524,23 @@ void Serial2::write(const Tango::DevVarCharArray *argin)
{
DEBUG_STREAM << "Serial2::Write() - " << device_name << std::endl;
/*----- PROTECTED REGION ID(Serial2::write) ENABLED START -----*/
vector<unsigned char> argin_data;
argin_data << *argin;
size_t bytes_total = 0, bytes_to_write = argin_data.size();
if (! init_error.empty()) {
sleep(tout);
Tango::Except::throw_exception(
"", init_error.c_str(), __PRETTY_FUNCTION__);
}
vector<unsigned char> argin_data;
argin_data << *argin;
size_t bytes_total = 0, bytes_to_write = argin_data.size();
if (max(output_queue_length(), 0) != 0) {
close();
resolve();
open();
reconnections += 1;
goto error;
}
while (bytes_total < bytes_to_write) {
int s = select(WRITE);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment