Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Application has no proper title and ignores SIGTERM #1013

Closed
willbelr opened this issue Oct 30, 2023 · 0 comments · Fixed by #1120
Closed

Application has no proper title and ignores SIGTERM #1013

willbelr opened this issue Oct 30, 2023 · 0 comments · Fixed by #1120

Comments

@willbelr
Copy link

In the Linux version (cemu v2.0.59-1), I use a script to close all running emulators at once, and I noticed that cemu is not affected by the killall command. Instead, it require the full bin path;

killall cemu  # cemu: no process found
killall /usr/bin/cemu  # process found, but won't close

When running cemu, using ps -eo comm shows that it is actually called MainThread, instead of cemu.

Regarding the signals, oddly cemu won't close with SIGTERM, and instead requires SIGQUIT (which also dumps the core);

killall /usr/bin/cemu  # process gets the signals, but it keeps running
killall -s SIGQUIT /usr/bin/cemu  # this works
killall -s SIGQUIT MainThread  # also works
This was referenced Mar 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant