Quote Originally Posted by martinb0820 View Post
Is there a platform-independent way to kill the process using Qt calls, or do I need to use native O/S calls? I'm supporting both Windows and Linux.
Divide something by 0

For posix systems you can use kill passing it your own pid and SIGKILL as the signal. For non-posix systems you have to find other means.