Skip to content

Commit

Permalink
[remove] disable signal handling
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoferigo committed Oct 27, 2021
1 parent 8501cbe commit 326ea4f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scenario/src/gazebo/src/GazeboSimulator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -219,9 +219,9 @@ bool GazeboSimulator::initialize()
// Setup signals callbacks.
// It must be done after the creation of the simulator since
// we override their callbacks.
core::utils::SignalManager::Instance().setCallback(SIGINT, cb);
core::utils::SignalManager::Instance().setCallback(SIGTERM, cb);
core::utils::SignalManager::Instance().setCallback(SIGABRT, cb);
// core::utils::SignalManager::Instance().setCallback(SIGINT, cb);
// core::utils::SignalManager::Instance().setCallback(SIGTERM, cb);
// core::utils::SignalManager::Instance().setCallback(SIGABRT, cb);

return true;
}
Expand Down

0 comments on commit 326ea4f

Please sign in to comment.