| 3771 | } |
| 3772 | |
| 3773 | static int |
| 3774 | __umtx_op_sem_wake(struct thread *td, struct _umtx_op_args *uap, |
| 3775 | const struct umtx_copyops *ops __unused) |
| 3776 | { |
| 3777 | |
| 3778 | return (do_sem_wake(td, uap->obj)); |
| 3779 | } |
| 3780 | #endif |
| 3781 | |
| 3782 | static int |
nothing calls this directly
no test coverage detected