mirror of
https://git.freebsd.org/src.git
synced 2026-01-16 23:02:24 +00:00
Fixes: e00a781c21 ("mqueue: Export kern_kmq_* symbols from kernel module")
Sponsored by: The FreeBSD Foundation
16 lines
265 B
Makefile
16 lines
265 B
Makefile
.PATH: ${SRCTOP}/sys/kern
|
|
|
|
KMOD= mqueuefs
|
|
SRCS= uipc_mqueue.c \
|
|
vnode_if.h \
|
|
opt_posix.h opt_capsicum.h
|
|
|
|
EXPORT_SYMS= \
|
|
kern_kmq_notify \
|
|
kern_kmq_open \
|
|
kern_kmq_setattr \
|
|
kern_kmq_timedreceive \
|
|
kern_kmq_timedsend \
|
|
sys_kmq_unlink
|
|
|
|
.include <bsd.kmod.mk>
|