* use exit() instead of exit_thread(), makes profiling even possible

with the built-in GCC profiling (thanks Axel)


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19387 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2006-11-29 03:14:15 +00:00
parent 64792e619e
commit 5288f0a48d

View File

@ -278,7 +278,7 @@ AppServer::_DispatchMessage(int32 code, BPrivate::LinkReceiver& msg)
delete this;
// we are now clear to exit
exit_thread(0);
exit(0);
break;
}
#endif