vote up 2 vote down star

The C++ standard provides the std::set_terminate function which lets you specify what function std::terminate should actually call. std::terminate should only get called in dire circumstances, and sure enough the situations the standard describes for when it's called are dire (e.g. an uncaught exception). When std::terminate does get called the situation seems analagous to being out of memory -- there's not really much you can sensically do.

I've read that it can be used to make sure resources are freed -- but for the majority of resources this should be handled automatically by the OS when the process exits (e.g. file handles). Theoretically I can see a case for if say, you needed to send a server a specific message when exiting due to a crash. But the majority of the time the OS handling should be sufficient.

When is using a terminate handler the Right Thing(TM)?

flag

35% accept rate
1  
std::terminate should only get called in dire circumstances, and sure enough the situations the standard describes for when it's called are dire (e.g. an uncaught exception). – kitchen Jun 29 at 15:03
You mean unexpected exception: msdn.microsoft.com/en-us/library/… – Martin York Jun 29 at 15:14
1  
No he means uncaught exception. – CiscoIPPhone Jun 29 at 15:31
1  
Yep found it. The catch all phrase: (The exception handling mechanism cannot find a handler for a thrown exception.) – Martin York Jun 29 at 16:52

2 Answers

vote up -2 vote down

I think the right question would be how to avoid the calls to terminate handler, rather than when to use it.

link|flag
-1, pointless sidestep of the question. – Not Sure Jun 29 at 17:46
Thanks for the appreciation. But... it is not pointless. Avoiding terminate handler is a good practice. – Cătălin Pitiș Jun 29 at 17:48
It's crystal clear (to me at least) that the OP already understands that. – Not Sure Jun 29 at 19:22
vote up 2 vote down

This is just optimistic:

but for the majority of resources this should be handled automatically by the OS when the process exits

About the only resources that the OS handles automatically are "File Handles" and "Memory" (And this may vary across OS's). Practically all other resources (and if somebody has a list of resources that are automatically handled by OS's I would love that) need to be manually released by the OS.

Your best bet is to avoid exit using terminate() and try a controlled shut down by forcing the stack to unwind correctly. This will make sure that all destructors are called correctly and your resources are released (via destructors).

About the only thing I would do is log the problem. So that when it does happened I could go back and fix the code so that it does not happen again. I like my code to unwind the stack nicely for resource deallocation, but this is an opinion some people like abrupt halts when things go badly.

My list of when terminate is called:

In general it is called when the exception handling mechanism cannot find a handler for a thrown exception. Some specific examples are:

  • An exception escapes main()
    • Note: It is implementation defined whether the stack is unwound here. Thus I always catch in main and then rethrow (if I do not explicitly handle). That way I guarantee unwinding of the stack (across all platforms) and still get the benefits of the OS exception handling mechanism.
  • Two exceptions propagating simultaneously.
    • An exception escapes a desatructor while another exception is propagating.
    • The expression being thrown generates an exception
  • An exception before or after main.
    • If an exception escapes the constructor/destructor of a global object.
    • If an exception escapes the destructor of a function static variable. (ie be careful with constructors/destructors of nonlocal static object)
    • An exception escapes a function registered with atexit().
  • A rethrow when no exception is currently propagating.
  • An unlisted exception escapes a method/function that has exception specifier list.
    • via unexpected.
link|flag
2  
Actually, I'd be interested in seeing a list of resoources which are NOT recovered by a modern OS when a process terminatwes. AFAIK, all resources such a sockets, mutexes are recovered by both Linux & Windows. It's hard to see how you could have areliable server OS where this was not the case. – Neil Butterworth Jun 29 at 19:28
I believe Neil is correct. Granted, C++ is not always run on a modern OS ;) – Joseph Garvin Jun 29 at 19:33
NOT recovered is huge. Its anything not low enough to be managed by the OS. DB connectionc, links to the ISS :-). Even sockets are not handeled very well. On Linux If you kill an application listening on a Socket that socket is still unusable for several minutes before the OS will clean in up. On windows file are not handled particularily nicely. How often have I had to reboot because some dead application is still holding onto a file (the file handle may have been cleaned up, but the file system still thinks the file is being used) stopping me from deleting it. – Martin York Jun 29 at 19:43
But sockets will be recovered - the pause is inherent in the socket architecture, but is also confugurable. I do a lot of ODBC work and have no problems with database connections not being closed (they are also normally sockets, of course). Similarly, I have no problems with files. Are you still running Windows 3.1, by any chance :-) – Neil Butterworth Jun 29 at 19:51
1  
Started a question to answer the conundrum. stackoverflow.com/questions/1060160/… – Martin York Jun 29 at 19:54
show 2 more comments

Your Answer

Get an OpenID
or

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