ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

The best practice is that each node should be able to properly shutdown itself. Node orderings for shutdown (and bringup) are not supported by design.

The best practice is that each node should be able to properly shutdown itself. Node orderings for shutdown (and bringup) are not supported by design.

You could circumvent this by (at least in c++) removing the SIGINT handler in ros::init and then doing your own shutdown procedure. But this needs to happen in all nodes involved.

The best practice is that each node should be able to properly shutdown itself. Node As far as I know node orderings for shutdown (and bringup) are not supported by design.

You could circumvent this by (at least in c++) removing the SIGINT handler in ros::init and then doing your own shutdown procedure. But this needs to happen in all nodes involved.