Home
last modified time | relevance | path

Searched refs:unsafe_wait (Results 1 – 5 of 5) sorted by relevance

/oneTBB/include/oneapi/tbb/detail/
H A D_exception.h40 unsafe_wait, enumerator
69 class TBB_EXPORT unsafe_wait : public std::runtime_error {
71 unsafe_wait(const char* msg) : std::runtime_error(msg) {} in unsafe_wait() function
/oneTBB/src/tbb/
H A Dexception.cpp91 case exception_id::unsafe_wait: DO_THROW(unsafe_wait, ("Unsafe to wait further")); break; in throw_exception()
H A Dgovernor.cpp312 throw_exception(exception_id::unsafe_wait); in finalize()
/oneTBB/include/oneapi/tbb/
H A Dglobal_control.h195 using detail::r1::unsafe_wait;
/oneTBB/test/tbb/
H A Dtest_global_control.cpp134 catch ( const tbb::unsafe_wait& e) { in TestException()