notnil / chess

chess package for go
MIT License
508 stars 126 forks source link

Prevent group signals to kill engine processes #114

Open leonhfr opened 1 year ago

leonhfr commented 1 year ago

The issue happens when implementing cancellation and graceful shutdown for interrupt signals, for example in a CLI when a user presses CTRL+C. We capture the signals and prevent the immediate exit. The expected behavior would be for the parent application to have control over when the engine subprocess ends and eventually kill it with uci.Engine.Close() while handling its shutdown.

However, the shell signal the entire process group when pressing CTRL+C. Therefore the engine subprocess is killed immediately and the parent process loses control. If waiting on engine output, it is left hanging.

To prevent the shell from signaling the children, we need to start the command in its own process group. This PR implements this.

If having the engine subprocess in the same process group as the parent is sometimes desirable, then alternatively it would be nice to have an option to control the behavior.