Skip to content
This repository was archived by the owner on Jan 25, 2025. It is now read-only.

Conversation

@leonhfr
Copy link

@leonhfr leonhfr commented Sep 11, 2022

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.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant