| 69 | namespace this_thread { |
| 70 | |
| 71 | void migrate() { |
| 72 | if (unlikely(!g_work_pool)) { |
| 73 | throw_system_error(EPERM, "this_thread::migrate: work pool is not initialized"); |
| 74 | } |
| 75 | g_work_pool->thread_migrate(); |
| 76 | } |
| 77 | |
| 78 | } |
| 79 |
nothing calls this directly
no test coverage detected