| 693 | } |
| 694 | |
| 695 | int |
| 696 | linux_mq_unlink(struct thread *td, struct linux_mq_unlink_args *args) |
| 697 | { |
| 698 | #ifdef P1003_1B_MQUEUE |
| 699 | return (sys_kmq_unlink(td, (struct kmq_unlink_args *)args)); |
| 700 | #else |
| 701 | return (ENOSYS); |
| 702 | #endif |
| 703 | } |
| 704 | |
| 705 | int |
| 706 | linux_mq_timedsend(struct thread *td, struct linux_mq_timedsend_args *args) |
nothing calls this directly
no test coverage detected