| 268 | }; |
| 269 | |
| 270 | inline thread::thread( thread_pool& master, int type /*= 0*/ ) |
| 271 | : m_pool( master ) |
| 272 | , m_type( type ) |
| 273 | , m_id( master.get_next_id()) |
| 274 | {} |
| 275 | |
| 276 | inline thread::thread( thread const& sample ) |
| 277 | : m_pool( sample.m_pool ) |
nothing calls this directly
no test coverage detected