sl@0: // boost/cstdlib.hpp header ------------------------------------------------// sl@0: sl@0: // Copyright Beman Dawes 2001. Distributed under the Boost sl@0: // Software License, Version 1.0. (See accompanying file sl@0: // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) sl@0: sl@0: // See http://www.boost.org/libs/utility/cstdlib.html for documentation. sl@0: sl@0: // Revision History sl@0: // 26 Feb 01 Initial version (Beman Dawes) sl@0: sl@0: #ifndef BOOST_CSTDLIB_HPP sl@0: #define BOOST_CSTDLIB_HPP sl@0: sl@0: #include sl@0: sl@0: namespace boost sl@0: { sl@0: // The intent is to propose the following for addition to namespace std sl@0: // in the C++ Standard Library, and to then deprecate EXIT_SUCCESS and sl@0: // EXIT_FAILURE. As an implementation detail, this header defines the sl@0: // new constants in terms of EXIT_SUCCESS and EXIT_FAILURE. In a new sl@0: // standard, the constants would be implementation-defined, although it sl@0: // might be worthwhile to "suggest" (which a standard is allowed to do) sl@0: // values of 0 and 1 respectively. sl@0: sl@0: // Rationale for having multiple failure values: some environments may sl@0: // wish to distinguish between different classes of errors. sl@0: // Rationale for choice of values: programs often use values < 100 for sl@0: // their own error reporting. Values > 255 are sometimes reserved for sl@0: // system detected errors. 200/201 were suggested to minimize conflict. sl@0: sl@0: const int exit_success = EXIT_SUCCESS; // implementation-defined value sl@0: const int exit_failure = EXIT_FAILURE; // implementation-defined value sl@0: const int exit_exception_failure = 200; // otherwise uncaught exception sl@0: const int exit_test_failure = 201; // report_error or sl@0: // report_critical_error called. sl@0: } sl@0: sl@0: #endif sl@0: