XXX: this wont work with module - convert it */
| 683 | |
| 684 | /* XXX: this wont work with module - convert it */ |
| 685 | int |
| 686 | linux_mq_open(struct thread *td, struct linux_mq_open_args *args) |
| 687 | { |
| 688 | #ifdef P1003_1B_MQUEUE |
| 689 | return (sys_kmq_open(td, (struct kmq_open_args *)args)); |
| 690 | #else |
| 691 | return (ENOSYS); |
| 692 | #endif |
| 693 | } |
| 694 | |
| 695 | int |
| 696 | linux_mq_unlink(struct thread *td, struct linux_mq_unlink_args *args) |
nothing calls this directly
no test coverage detected