minix/servers/ipc/ipc.conf
Ben Gras d477a9ed82 vm/ipc: only report signals when it matters to ipc
. 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
2011-08-05 20:52:32 +00:00

20 lines
193 B
Plaintext

service ipc
{
system
UMAP # 14
VIRCOPY # 15
;
uid 0;
ipc
SYSTEM USER pm rs log tty ds vm
;
vm
REMAP
SHM_UNMAP
GETPHYS
GETREF
QUERY_EXIT
WATCH_EXIT
;
};