| 3822 | } |
| 3823 | |
| 3824 | static int |
| 3825 | __umtx_op_sem2_wake(struct thread *td, struct _umtx_op_args *uap, |
| 3826 | const struct umtx_copyops *ops __unused) |
| 3827 | { |
| 3828 | |
| 3829 | return (do_sem2_wake(td, uap->obj)); |
| 3830 | } |
| 3831 | |
| 3832 | #define USHM_OBJ_UMTX(o) \ |
| 3833 | ((struct umtx_shm_obj_list *)(&(o)->umtx_data)) |
nothing calls this directly
no test coverage detected