d477a9ed82
. ipc wants to know about processes that get signals, so that it can break blocking ipc operations . doing it for every single signal is wasteful and causes the annoying 'no slot for signals' message . this fix tells vm on a per-process basis it (ipc) wants to be notified, i.e. only when it does any ipc calls . move ipc config to separate config file while we're at it
15 lines
217 B
Makefile
15 lines
217 B
Makefile
# Makefile for IPC server
|
|
PROG= ipc
|
|
SRCS= main.c utility.c shm.c sem.c
|
|
|
|
DPADD+= ${LIBSYS}
|
|
LDADD+= -lsys
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /usr/sbin
|
|
FILES=ipc.conf
|
|
FILESNAME=ipc
|
|
FILESDIR= /etc/system.conf.d
|
|
|
|
.include <minix.service.mk>
|