* thread exit hook. */
| 4554 | * thread exit hook. |
| 4555 | */ |
| 4556 | void |
| 4557 | umtx_thread_exit(struct thread *td) |
| 4558 | { |
| 4559 | |
| 4560 | umtx_thread_cleanup(td); |
| 4561 | } |
| 4562 | |
| 4563 | static int |
| 4564 | umtx_read_uptr(struct thread *td, uintptr_t ptr, uintptr_t *res, bool compat32) |
no test coverage detected