| 1522 | return indirect_lock<thread>(ppt, nullptr); |
| 1523 | } |
| 1524 | join_handle* thread_enable_join(thread* th, bool flag) |
| 1525 | { |
| 1526 | th->set_joinable(flag); |
| 1527 | return (join_handle*)th; |
| 1528 | } |
| 1529 | |
| 1530 | void* thread_join(join_handle* jh) { |
| 1531 | auto th = (thread*)jh; |