| 3522 | } |
| 3523 | |
| 3524 | static int |
| 3525 | __umtx_op_wake(struct thread *td, struct _umtx_op_args *uap, |
| 3526 | const struct umtx_copyops *ops __unused) |
| 3527 | { |
| 3528 | |
| 3529 | return (kern_umtx_wake(td, uap->obj, uap->val, 0)); |
| 3530 | } |
| 3531 | |
| 3532 | #define BATCH_SIZE 128 |
| 3533 | static int |
nothing calls this directly
no test coverage detected