| 178 | bool start_thread_noexcept(); |
| 179 | bool start_thread_noexcept(const attributes& attr); |
| 180 | void start_thread() |
| 181 | { |
| 182 | if (!start_thread_noexcept()) |
| 183 | { |
| 184 | boost::throw_exception(thread_resource_error()); |
| 185 | } |
| 186 | } |
| 187 | void start_thread(const attributes& attr) |
| 188 | { |
| 189 | if (!start_thread_noexcept(attr)) |
no test coverage detected