| 713 | } |
| 714 | |
| 715 | int |
| 716 | linux_mq_timedreceive(struct thread *td, struct linux_mq_timedreceive_args *args) |
| 717 | { |
| 718 | #ifdef P1003_1B_MQUEUE |
| 719 | return (sys_kmq_timedreceive(td, (struct kmq_timedreceive_args *)args)); |
| 720 | #else |
| 721 | return (ENOSYS); |
| 722 | #endif |
| 723 | } |
| 724 | |
| 725 | int |
| 726 | linux_mq_notify(struct thread *td, struct linux_mq_notify_args *args) |
nothing calls this directly
no test coverage detected