Skip to content

Commit

Permalink
Merge pull request monero-project#4602
Browse files Browse the repository at this point in the history
6f28667 daemon: fix reading past stack on exit (moneromooo-monero)
  • Loading branch information
fluffypony committed Oct 16, 2018
2 parents c5be5ca + 6f28667 commit d4e4fac
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions src/daemon/daemon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,13 +137,18 @@ bool t_daemon::run(bool interactive)
throw std::runtime_error{"Can't run stopped daemon"};
}

std::atomic<bool> stop(false);
boost::thread([&stop, this] {
std::atomic<bool> stop(false), shutdown(false);
boost::thread stop_thread = boost::thread([&stop, &shutdown, this] {
while (!stop)
epee::misc_utils::sleep_no_w(100);
this->stop_p2p();
}).detach();
tools::signal_handler::install([&stop](int){ stop = true; });
if (shutdown)
this->stop_p2p();
});
epee::misc_utils::auto_scope_leave_caller scope_exit_handler = epee::misc_utils::create_scope_leave_handler([&](){
stop = true;
stop_thread.join();
});
tools::signal_handler::install([&stop, &shutdown](int){ stop = shutdown = true; });

try
{
Expand Down

0 comments on commit d4e4fac

Please sign in to comment.