| 2731 | #include <compat/freebsd32/freebsd32_util.h> |
| 2732 | |
| 2733 | static void |
| 2734 | mq_attr_from32(const struct mq_attr32 *from, struct mq_attr *to) |
| 2735 | { |
| 2736 | |
| 2737 | to->mq_flags = from->mq_flags; |
| 2738 | to->mq_maxmsg = from->mq_maxmsg; |
| 2739 | to->mq_msgsize = from->mq_msgsize; |
| 2740 | to->mq_curmsgs = from->mq_curmsgs; |
| 2741 | } |
| 2742 | |
| 2743 | static void |
| 2744 | mq_attr_to32(const struct mq_attr *from, struct mq_attr32 *to) |
no outgoing calls
no test coverage detected