MCPcopy Create free account
hub / github.com/F-Stack/f-stack / mq_attr_from32

Function mq_attr_from32

freebsd/kern/uipc_mqueue.c:2733–2741  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2731#include <compat/freebsd32/freebsd32_util.h>
2732
2733static void
2734mq_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
2743static void
2744mq_attr_to32(const struct mq_attr *from, struct mq_attr32 *to)

Callers 2

freebsd32_kmq_openFunction · 0.85
freebsd32_kmq_setattrFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected