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

Function linux_mq_open

freebsd/i386/linux/linux_machdep.c:685–693  ·  view source on GitHub ↗

XXX: this wont work with module - convert it */

Source from the content-addressed store, hash-verified

683
684/* XXX: this wont work with module - convert it */
685int
686linux_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
695int
696linux_mq_unlink(struct thread *td, struct linux_mq_unlink_args *args)

Callers

nothing calls this directly

Calls 1

sys_kmq_openFunction · 0.85

Tested by

no test coverage detected