os/ossrv/ossrv_pub/boost_apis/boost/cstdlib.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
//  boost/cstdlib.hpp header  ------------------------------------------------//
sl@0
     2
sl@0
     3
//  Copyright Beman Dawes 2001.  Distributed under the Boost
sl@0
     4
//  Software License, Version 1.0. (See accompanying file
sl@0
     5
//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
sl@0
     6
sl@0
     7
//  See http://www.boost.org/libs/utility/cstdlib.html for documentation.
sl@0
     8
sl@0
     9
//  Revision History
sl@0
    10
//   26 Feb 01  Initial version (Beman Dawes)
sl@0
    11
sl@0
    12
#ifndef BOOST_CSTDLIB_HPP
sl@0
    13
#define BOOST_CSTDLIB_HPP
sl@0
    14
sl@0
    15
#include <cstdlib>
sl@0
    16
sl@0
    17
namespace boost
sl@0
    18
{
sl@0
    19
   //  The intent is to propose the following for addition to namespace std
sl@0
    20
   //  in the C++ Standard Library, and to then deprecate EXIT_SUCCESS and
sl@0
    21
   //  EXIT_FAILURE.  As an implementation detail, this header defines the
sl@0
    22
   //  new constants in terms of EXIT_SUCCESS and EXIT_FAILURE.  In a new
sl@0
    23
   //  standard, the constants would be implementation-defined, although it
sl@0
    24
   //  might be worthwhile to "suggest" (which a standard is allowed to do)
sl@0
    25
   //  values of 0 and 1 respectively.
sl@0
    26
sl@0
    27
   //  Rationale for having multiple failure values: some environments may
sl@0
    28
   //  wish to distinguish between different classes of errors.
sl@0
    29
   //  Rationale for choice of values: programs often use values < 100 for
sl@0
    30
   //  their own error reporting.  Values > 255 are sometimes reserved for
sl@0
    31
   //  system detected errors.  200/201 were suggested to minimize conflict.
sl@0
    32
sl@0
    33
   const int exit_success = EXIT_SUCCESS;  // implementation-defined value
sl@0
    34
   const int exit_failure = EXIT_FAILURE;  // implementation-defined value
sl@0
    35
   const int exit_exception_failure = 200; // otherwise uncaught exception
sl@0
    36
   const int exit_test_failure = 201;      // report_error or
sl@0
    37
                                           //  report_critical_error called.
sl@0
    38
}
sl@0
    39
sl@0
    40
#endif
sl@0
    41