| 2741 | } |
| 2742 | |
| 2743 | static void |
| 2744 | mq_attr_to32(const struct mq_attr *from, struct mq_attr32 *to) |
| 2745 | { |
| 2746 | |
| 2747 | to->mq_flags = from->mq_flags; |
| 2748 | to->mq_maxmsg = from->mq_maxmsg; |
| 2749 | to->mq_msgsize = from->mq_msgsize; |
| 2750 | to->mq_curmsgs = from->mq_curmsgs; |
| 2751 | } |
| 2752 | |
| 2753 | int |
| 2754 | freebsd32_kmq_open(struct thread *td, struct freebsd32_kmq_open_args *uap) |
no outgoing calls
no test coverage detected