Most likely Creator launches your program via QProcess so when you ask it to stop the program it either does QProcess::terminate() or QProcess::kill() (which of the two it is, you can check in the source code). If Creator asks to force stop, then most likely it tries with terminate() first and if it fails, it does kill().