mirror of
https://github.com/opnsense/src.git
synced 2026-07-15 04:01:09 -04:00
linux.ko supports POSIX message queues using these symbols, so they need to be exported rather than relying on the kernel linker's misfeature of linking against debug or local symbols (which will soon be disabled by default). Reported by: mav Reviewed by: zlei Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D53907 (cherry picked from commit e00a781c216cb12603a0a71c9ca293dde3e06250) (cherry picked from commit eb90470f5f2a0e5c820c47be329423f5c60ca247)
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>
|