* This is an internal header file, included by other headers and the
* implementation. You should not attempt to use it directly.
*/
#ifndef _EXCEPTION_PTR_H
#define _EXCEPTION_PTR_H
#pragma GCC visibility push(default)
#include <bits/c++config.h>
#include <exception_defines.h>
#if !defined(_GLIBCXX_ATOMIC_BUILTINS_4)
# error This platform does not support exception propagation.
#endif
extern "C++" {
namespace std
{
* @addtogroup exceptions
* @{
*/
namespace __exception_ptr
{
* @brief An opaque pointer to an arbitrary exception.
*/
class exception_ptr;
}
using __exception_ptr::exception_ptr;
* is none, or the currently handled exception is foreign, return the null
* value.
*/
exception_ptr current_exception() throw();
void rethrow_exception(exception_ptr) __attribute__ ((__noreturn__));
template<typename _Ex>
exception_ptr
copy_exception(_Ex __ex) throw();
namespace __exception_ptr
{
bool
operator==(const exception_ptr&, const exception_ptr&) throw();
bool
operator!=(const exception_ptr&, const exception_ptr&) throw();
class exception_ptr
{
void* _M_exception_object;
explicit exception_ptr(void* __e) throw();
void _M_addref() throw();
void _M_release() throw();
void *_M_get() const throw();
void _M_safe_bool_dummy();
friend exception_ptr std::current_exception() throw();
friend void std::rethrow_exception(exception_ptr);
public:
exception_ptr() throw();
typedef void (exception_ptr::*__safe_bool)();
exception_ptr(__safe_bool) throw();
exception_ptr(const exception_ptr&) throw();
#ifdef __GXX_EXPERIMENTAL_CXX0X__
exception_ptr(exception_ptr&& __o) throw()
: _M_exception_object(__o._M_exception_object)
{ __o._M_exception_object = 0; }
#endif
exception_ptr&
operator=(const exception_ptr&) throw();
#ifdef __GXX_EXPERIMENTAL_CXX0X__
exception_ptr&
operator=(exception_ptr&& __o) throw()
{
exception_ptr(static_cast<exception_ptr&&>(__o)).swap(*this);
return *this;
}
#endif
~exception_ptr() throw();
void
swap(exception_ptr&) throw();
#ifdef _GLIBCXX_EH_PTR_COMPAT
bool operator!() const throw();
operator __safe_bool() const throw();
#endif
friend bool
operator==(const exception_ptr&, const exception_ptr&) throw();
const type_info*
__cxa_exception_type() const throw();
};
}
template<typename _Ex>
exception_ptr
copy_exception(_Ex __ex) throw()
{
__try
{
throw __ex;
}
__catch(...)
{
return current_exception ();
}
}
}
}
#pragma GCC visibility pop
#endif