Guig
Guig

Reputation: 10395

How can I kill a long running process when my MacOS app is terminated?

Within my Mac application, I start a long running process (a local server) as so:

let process = Process()
process.launchPath = "/bin/zsh"
process.arguments = ["-c"] + ["'\(command)'"]
try process.run()

I've noticed that when my app is terminated, the process is not and it keeps running.

How can I make it so that the process is killed when my app is terminated (regardless of how it is terminated, i.e. force quit, kill -9, crash, etc.)?

Upvotes: 2

Views: 70

Answers (0)

Related Questions