minix/minix/kernel/system/Makefile.inc
Sanchayan Maity 8501cb7ed8 Allow users to request a asynchronous notification
This patch adds functionality to request an asynchronous notification
if some other process has send a message to it. We currently send a
SIGALRM to avoid any changes to core infrastructure of signal handling.
Ideally we should implement a separate signal for this. Currently there
is an obvious disadvantage of not being able to use SIGALRM with alarm,
if we are using this functionality.
2016-03-22 17:51:09 +05:30

55 lines
856 B
Makefile

# Makefile for system library implementation
.include <bsd.own.mk>
.PATH: ${.CURDIR}/system
SRCS+= \
do_fork.c \
do_exec.c \
do_clear.c \
do_exit.c \
do_trace.c \
do_runctl.c \
do_update.c \
do_times.c \
do_setalarm.c \
do_stime.c \
do_settime.c \
do_vtimer.c \
do_irqctl.c \
do_copy.c \
do_umap.c \
do_umap_remote.c \
do_vumap.c \
do_memset.c \
do_setgrant.c \
do_privctl.c \
do_safecopy.c \
do_safememset.c \
do_diagctl.c \
do_getksig.c \
do_endksig.c \
do_kill.c \
do_sigsend.c \
do_sigreturn.c \
do_abort.c \
do_getinfo.c \
do_vmctl.c \
do_mcontext.c \
do_schedule.c \
do_schedctl.c \
do_statectl.c \
do_mq_open.c \
do_mq_close.c \
do_mq_send.c \
do_mq_rec.c \
do_mq_set_attribute.c \
do_mq_get_attribute.c \
do_mq_request_notify.c
.if ${MACHINE_ARCH} == "i386"
SRCS+= \
do_devio.c \
do_vdevio.c
.endif