Merge pull request #37 from tewinget/signals_fix

Fixed console handler not properly exiting on SIGINT and such
This commit is contained in:
monero-project
2014-06-13 12:01:07 -04:00

View File

@@ -233,6 +233,7 @@ namespace epee
void stop()
{
m_running = false;
m_stdin_reader.stop();
}
@@ -244,6 +245,10 @@ namespace epee
bool continue_handle = true;
while(continue_handle)
{
if (!m_running)
{
break;
}
if (!prompt.empty())
{
epee::log_space::set_console_color(epee::log_space::console_color_yellow, true);
@@ -257,7 +262,7 @@ namespace epee
std::string command;
if(!m_stdin_reader.get_line(command))
{
LOG_PRINT("Failed to read line. Ignoring and continuing to run, exiting daemon may require a SIGTERM kill.", LOG_LEVEL_0);
LOG_PRINT("Failed to read line.", LOG_LEVEL_0);
}
string_tools::trim(command);
@@ -285,6 +290,7 @@ namespace epee
private:
async_stdin_reader m_stdin_reader;
bool m_running = true;
};