mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-16 18:11:49 +00:00
- Proper process termination:
if interrupted with CTRL+C blocking socket calls will return with -1. Each device should call FairMQDevice::Shutdown() before ending the running state to close open sockets, otherwise the interrupt call itself will block. - FIX: Update number of received messages for FairMQFileSink. - Add ability to poll on outputs for FairMQPoller.
This commit is contained in:
committed by
Mohammad Al-Turany
parent
8cd120aef4
commit
0a610926a1
@@ -28,13 +28,13 @@ void FairMQSink::Run()
|
||||
|
||||
boost::thread rateLogger(boost::bind(&FairMQDevice::LogSocketRates, this));
|
||||
|
||||
size_t bytes_received = 0;
|
||||
int received = 0;
|
||||
|
||||
while (fState == RUNNING)
|
||||
{
|
||||
FairMQMessage* msg = fTransportFactory->CreateMessage();
|
||||
|
||||
bytes_received = fPayloadInputs->at(0)->Receive(msg);
|
||||
received = fPayloadInputs->at(0)->Receive(msg);
|
||||
|
||||
delete msg;
|
||||
}
|
||||
@@ -45,6 +45,8 @@ void FairMQSink::Run()
|
||||
} catch(boost::thread_resource_error& e) {
|
||||
LOG(ERROR) << e.what();
|
||||
}
|
||||
|
||||
FairMQDevice::Shutdown();
|
||||
}
|
||||
|
||||
FairMQSink::~FairMQSink()
|
||||
|
Reference in New Issue
Block a user