I am looking for a simple and uncatchable way to terminate the Mac port of my C++ application. In Windows I was using
TerminateProcess(GetCurrentProcess, 0);
What's the equivalent command I can use with Mac OS X / XCode / GCC?
|
|
|||||
|
|
|
Actually you want |
||
|
|
|
|
exit(0); |
||
|
|
|
Keep in mind that if either you call exit() or TerminateProcess(), you'll get you application terminated immediately, i.e. no destructor calls, no cleanup you may expect to be done is done (of course OS cleans up everything it can). |
||
|
|
|
A closer to ProcessTerminate will be to send a SIGKILL with kill, both terminate the current process immediately and can't be trapped. This is the same as _exit
|
||||
|