Detailed Description
Often an application needs to be terminated when a fatal error occurs (whether or not CWDEBUG is defined). Libcwd defines for these cases the macro DoutFatal.This allows you to write
instead of the equivalent
if (error)
{
std::cerr << "An error occurred" << std::endl;
exit(254);
}
The big difference with Dout is that DoutFatal is not replaced with white space when the macro CWDEBUG is not defined.There are two debug channels that can be used together with DoutFatal:
dc::fatal and
dc::core . The first terminates by calling
exit(254)
, the second terminates by raising SIGABORT, causing the application to core dump.
- See Also
- Predefined Debug Channels
Control Flags
Defining your own debug objects