peerplays-fc/include/fc/interprocess/signals.hpp

9 lines
180 B
C++
Raw Normal View History

2013-11-24 18:00:21 +00:00
#pragma once
#include <functional>
namespace fc
{
/// handler will be called from ASIO thread
void set_signal_handler( std::function<void(int)> handler, int signal_num );
}