Home | Libraries | People | FAQ | More |
boost::thread_resource_error —
The thread_resource_error class defines an exception type that is thrown by constructors in the Boost.Threads library when thread-related resources can not be acquired.
class thread_resource_error : public std::runtime_error { public: // construct/copy/destruct thread_resource_error(); };
thread_resource_error is used only when thread-related resources cannot be acquired; memory allocation failures are indicated by std::bad_alloc.
Copyright © 2001-2003 William E. Kempf |