Intel(R) Threading Building Blocks Doxygen Documentation
version 4.2.3
|
This class is used by TBB to propagate information about unhandled exceptions into the root thread. More...
#include <tbb_exception.h>
Public Member Functions | |
captured_exception (const captured_exception &src) | |
captured_exception (const char *name_, const char *info) | |
__TBB_EXPORTED_METHOD | ~captured_exception () throw () |
captured_exception & | operator= (const captured_exception &src) |
captured_exception *__TBB_EXPORTED_METHOD | move () __TBB_override throw () |
Creates and returns pointer to the deep copy of this exception object. More... | |
void __TBB_EXPORTED_METHOD | destroy () __TBB_override throw () |
Destroys objects created by the move() method. More... | |
void | throw_self () __TBB_override |
Throws this exception object. More... | |
const char *__TBB_EXPORTED_METHOD | name () const __TBB_override throw () |
Returns RTTI name of the originally intercepted exception. More... | |
const char *__TBB_EXPORTED_METHOD | what () const __TBB_override throw () |
Returns the result of originally intercepted exception's what() method. More... | |
void __TBB_EXPORTED_METHOD | set (const char *name, const char *info) throw () |
void __TBB_EXPORTED_METHOD | clear () throw () |
![]() | |
void | operator delete (void *p) |
Private Member Functions | |
captured_exception () | |
Used only by method move(). More... | |
Static Private Member Functions | |
static captured_exception * | allocate (const char *name, const char *info) |
Functionally equivalent to {captured_exception e(name,info); return e.move();}. More... | |
Private Attributes | |
bool | my_dynamic |
const char * | my_exception_name |
const char * | my_exception_info |
This class is used by TBB to propagate information about unhandled exceptions into the root thread.
Exception of this type is thrown by TBB in the root thread (thread that started a parallel algorithm ) if an unhandled exception was intercepted during the algorithm execution in one of the workers.
Definition at line 191 of file tbb_exception.h.
|
inline |
Definition at line 194 of file tbb_exception.h.
References my_exception_info, and my_exception_name.
|
inline |
Definition at line 200 of file tbb_exception.h.
__TBB_EXPORTED_METHOD tbb::captured_exception::~captured_exception | ( | ) | ||
throw | ( | |||
) |
|
inlineprivate |
Used only by method move().
Definition at line 231 of file tbb_exception.h.
|
staticprivate |
Functionally equivalent to {captured_exception e(name,info); return e.move();}.
void __TBB_EXPORTED_METHOD tbb::captured_exception::clear | ( | ) | ||
throw | ( | |||
) |
|
virtual |
Destroys objects created by the move() method.
Frees memory and calls destructor for this exception object. Can and must be used only on objects created by the move method.
Implements tbb::tbb_exception.
|
virtual |
Creates and returns pointer to the deep copy of this exception object.
Move semantics is allowed.
Implements tbb::tbb_exception.
|
virtual |
Returns RTTI name of the originally intercepted exception.
Implements tbb::tbb_exception.
|
inline |
Definition at line 208 of file tbb_exception.h.
void __TBB_EXPORTED_METHOD tbb::captured_exception::set | ( | const char * | name, |
const char * | info | ||
) | |||
throw | ( | ||
) |
|
inlinevirtual |
Throws this exception object.
Make sure that if you have several levels of derivation from this interface you implement or override this method on the most derived level. The implementation is as simple as "throw *this;". Failure to do this will result in exception of a base class type being thrown.
Implements tbb::tbb_exception.
Definition at line 220 of file tbb_exception.h.
References __TBB_THROW.
|
virtual |
Returns the result of originally intercepted exception's what() method.
Implements tbb::tbb_exception.
|
private |
Definition at line 236 of file tbb_exception.h.
|
private |
Definition at line 238 of file tbb_exception.h.
Referenced by captured_exception().
|
private |
Definition at line 237 of file tbb_exception.h.
Referenced by captured_exception().