How to do a kill(pid, SIGINT) in windows?

239 views Asked by At

I have Qt Application that executes a process when you click on a button.

I used this method QProcess::startDetached(...,qint64 * pid) : http://doc.qt.io/qt-5/qprocess.html#startDetached

The returned value is a pid and I would like to do a kill(pid, SIGINT) in windows.

It works well on Mac but I don't know how to do that in windows.

0

There are 0 answers