Actions
Task #1380
closedEnable signal processing in main()
Start date:
03/21/2014
Due date:
% Done:
100%
Estimated time:
Description
At least SIGINT and SIGTERM signals should be processed and NFD should be gracefully terminated.
Boost.Signal can be used for the implementation:
boost::asio::signal_set signalSet(<ioService>, SIGINT, SIGTERM);
signalSet.async_wait(callback);
Actions