You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 21, 2023. It is now read-only.
When stopping the miner application, it is terminated by sending the SIGKILL to all processes with the same name. This is problematic for two reasons.
If there are other miners running on the system (there shouldn't, but it's not impossible) they will be terminated as well.
Any GPU-specific settings (e.g. locking GPU core clock) will not be reset.
To fix we need to look into other ways of halting the process cleanly. For example, we should look into hooking into STDIN and sending CTRL+C to the process window instead.
The text was updated successfully, but these errors were encountered:
When stopping the miner application, it is terminated by sending the
SIGKILL
to all processes with the same name. This is problematic for two reasons.To fix we need to look into other ways of halting the process cleanly. For example, we should look into hooking into
STDIN
and sendingCTRL+C
to the process window instead.The text was updated successfully, but these errors were encountered: