vote up 1 vote down star

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?

flag

Related: stackoverflow.com/questions/397075/… – Éric Malenfant Feb 19 at 16:50
Just for reference, Windows _exit() does some cleanup before calling ExitProcess(). I assume exit() is the same but with some extended cleanup code. – Luke Quinane May 7 at 1:09

4 Answers

vote up 7 vote down check

Actually you want _exit if you want to have the same semantics as TerminateProcess. exit semantics are more closely aligned with ExitProcess.

link|flag
vote up 1 vote down

exit(0);


link|flag
exit is more like ExitProcess which tries to shutdown the application cleanly, but it might fail. TerminateProces is unconditional and can't be trapped. – Ismael Feb 19 at 17:17
vote up 1 vote down

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).

link|flag
exit will call the functions registered with atexit, so it is not the same. – Ismael Feb 19 at 17:20
vote up 3 vote down

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

kill(getpid(), SIGKILL);
link|flag
1  
Or, a bit easier: raise(SIGKILL). – Peter Hosey Sep 6 at 5:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.