mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
29d079c964
These system call wrappers call interposed system calls in fairly trivial ways. Move them over to libsys so all __libsys_interposer consumers end up in libsys. Also move recvmmsg and sendmmsg as they are documented with recv and send. Reviewed by: kib, emaste, imp Pull Request: https://github.com/freebsd/freebsd-src/pull/908
22 lines
586 B
Makefile
22 lines
586 B
Makefile
|
|
# compat-43 sources
|
|
.PATH: ${LIBC_SRCTOP}/${LIBC_ARCH}/compat-43 ${LIBC_SRCTOP}/compat-43
|
|
|
|
SRCS+= gethostid.c getwd.c killpg.c sethostid.c setpgrp.c \
|
|
setrgid.c setruid.c sigcompat.c
|
|
|
|
SYM_MAPS+=${LIBC_SRCTOP}/compat-43/Symbol.map
|
|
|
|
MAN+= killpg.2 sigpause.2 sigsetmask.2 sigvec.2
|
|
MAN+= gethostid.3 setruid.3
|
|
|
|
MLINKS+=gethostid.3 sethostid.3
|
|
MLINKS+=sigpause.2 sighold.2
|
|
MLINKS+=sigpause.2 sigignore.2
|
|
MLINKS+=sigpause.2 sigrelse.2
|
|
MLINKS+=sigpause.2 sigset.2
|
|
MLINKS+=sigpause.2 xsi_sigpause.2
|
|
MLINKS+=setruid.3 setrgid.3
|
|
|
|
MLINKS+=sigsetmask.2 sigblock.2
|
|
MLINKS+=sigsetmask.2 sigmask.2
|