| 723 | } |
| 724 | |
| 725 | int |
| 726 | linux_mq_notify(struct thread *td, struct linux_mq_notify_args *args) |
| 727 | { |
| 728 | #ifdef P1003_1B_MQUEUE |
| 729 | return (sys_kmq_notify(td, (struct kmq_notify_args *)args)); |
| 730 | #else |
| 731 | return (ENOSYS); |
| 732 | #endif |
| 733 | } |
| 734 | |
| 735 | int |
| 736 | linux_mq_getsetattr(struct thread *td, struct linux_mq_getsetattr_args *args) |
nothing calls this directly
no test coverage detected