* gcc.target/x86_64/abi/avx/asm-support.S (snapshot_ret): Preserve
[official-gcc/alias-decl.git] / libstdc++-v3 / src / future.cc
blob967012a8ca611c2d3a2f02fd8a943da8ad542aff
1 // future -*- C++ -*-
3 // Copyright (C) 2009 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
25 #include <future>
27 namespace
29 struct future_error_category : public std::error_category
31 virtual const char*
32 name() const
33 { return "future"; }
35 virtual std::string message(int __ec) const
37 std::string __msg;
38 switch (std::future_errc(__ec))
40 case std::future_errc::broken_promise:
41 __msg = "Broken promise";
42 break;
43 case std::future_errc::future_already_retrieved:
44 __msg = "Future already retrieved";
45 break;
46 case std::future_errc::promise_already_satisfied:
47 __msg = "Promise already satisfied";
48 break;
49 default:
50 __msg = "Unknown error";
51 break;
53 return __msg;
57 const future_error_category&
58 __future_category_instance()
60 static const future_error_category __fec;
61 return __fec;
65 namespace std
67 const error_category* const future_category = &__future_category_instance();
69 future_error::~future_error() throw() { }
71 const char*
72 future_error::what() const throw() { return _M_code.message().c_str(); }