6d5dec35b7
Option 'P1003_1B_SEMAPHORES' to compile them in, or load the "sem" module to activate them. Have kern/makesyscalls.sh emit an include for sys/_semaphore.h into sysproto.h to pull in the typedef for semid_t. Add the syscalls to the syscall table as module stubs.
9 lines
106 B
Makefile
9 lines
106 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../kern
|
|
|
|
KMOD= sem
|
|
SRCS= uipc_sem.c opt_posix.h
|
|
|
|
.include <bsd.kmod.mk>
|