1
0
mirror of https://github.com/termux/termux-app synced 2024-06-15 13:56:39 +00:00

Fix comment

This commit is contained in:
Christian Landvogt 2024-02-09 20:12:38 +01:00
parent 81fb1c1670
commit caf2100161

View File

@ -313,7 +313,7 @@ public final class AppShell {
public void term() {
int pid = ShellUtils.getPid(mProcess);
try {
// Send SIGKILL to process
// Send SIGTERM to process
Os.kill(pid, OsConstants.SIGTERM);
} catch (ErrnoException e) {
Logger.logWarn(LOG_TAG, "Failed to send SIGTERM to \"" + mExecutionCommand.getCommandIdAndLabelLogString() + "\" AppShell with pid " + pid + ": " + e.getMessage());