intel / collision-avoidance-library

A framework for testing and benchmarking collision avoidance strategies
Apache License 2.0
81 stars 39 forks source link

Silentkill is not working properly #3

Closed guiccbr closed 7 years ago

guiccbr commented 7 years ago

We need to prevent the terminal to display messages when one of its childs is killed.

The following block should prevent those messages to appear, however, in some cases it makes the script to get stalled on that call if the kill command is not successful:

kill $SIGNAL $1 > /dev/null 2> /dev/null
wait $1 2> /dev/null

We have remove the wait line above in the commit 9c4c222a47e16f08be02d83b1bcb0807d1a99e3a in order to avoid the stall. We still need to figure out how to avoid those messages without crashing.

guiccbr commented 7 years ago

Fix #10