Skip to content
Snippets Groups Projects
Commit ddae5252 authored by Mirko Wächter's avatar Mirko Wächter
Browse files

close FD after busshutdown

(cherry picked from commit e136fb89)
parent 5af73aa1
No related branches found
No related tags found
No related merge requests found
......@@ -279,6 +279,15 @@ void EtherCATRTUnit::rtRun()
//switching off the bus and be sure that the bus will receive
bus.switchBusOFF();
bus.updateBus();
if (getProperty<int>("SocketFileDescriptor").isSet() && getProperty<int>("SocketFileDescriptor").getValue() > 0)
{
ARMARX_INFO << "Closing raw socket with FD " << getProperty<int>("SocketFileDescriptor").getValue();
int ret = close(getProperty<int>("SocketFileDescriptor").getValue());
if (ret)
{
ARMARX_INFO << "Failed to close raw socket file handle: " << ret << " errno: " << strerror(errno);
}
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment