[Midnightbsd-cvs] src [7407] trunk/sys/modules: add mach module

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Thu Jan 7 22:31:42 EST 2016


Revision: 7407
          http://svnweb.midnightbsd.org/src/?rev=7407
Author:   laffer1
Date:     2016-01-07 22:31:42 -0500 (Thu, 07 Jan 2016)
Log Message:
-----------
add mach module

Modified Paths:
--------------
    trunk/sys/modules/Makefile

Added Paths:
-----------
    trunk/sys/modules/mach/
    trunk/sys/modules/mach/Makefile

Modified: trunk/sys/modules/Makefile
===================================================================
--- trunk/sys/modules/Makefile	2016-01-08 03:31:27 UTC (rev 7406)
+++ trunk/sys/modules/Makefile	2016-01-08 03:31:42 UTC (rev 7407)
@@ -195,6 +195,7 @@
 	mac_seeotheruids \
 	mac_stub \
 	mac_test \
+	mach \
 	malo \
 	mcd \
 	md \

Added: trunk/sys/modules/mach/Makefile
===================================================================
--- trunk/sys/modules/mach/Makefile	                        (rev 0)
+++ trunk/sys/modules/mach/Makefile	2016-01-08 03:31:42 UTC (rev 7407)
@@ -0,0 +1,29 @@
+SYSDIR?=${.CURDIR}/../..
+
+
+.PATH: ${SYSDIR}/compat/mach
+.PATH: ${SYSDIR}/compat/mach/ipc
+.PATH: ${SYSDIR}/compat/mach/kern
+
+WARNS=0
+CC=clang
+
+KMOD=	mach
+
+SRCS=	bus_if.h device_if.h vnode_if.h opt_compat_mach.h opt_ntp.h opt_capsicum.h
+# MIG autogenerated:
+SRCS+= host_priv_server.c mach_host_server.c mach_port_server.c mach_vm_server.c 
+SRCS+= task_server.c vm_map_server.c clock_server.c
+# compat/mach
+SRCS+= proc_info.c mach_clock.c mach_convert.c mach_host.c mach_host_priv.c
+SRCS+= mach_misc.c mach_module.c mach_processor.c mach_semaphore.c
+SRCS+= mach_task.c mach_thread.c mach_traps.c mach_vm.c 
+# compat/mach/ipc
+SRCS+= ipc_entry.c ipc_hash.c ipc_init.c ipc_kmsg.c ipc_kobject.c ipc_mqueue.c ipc_notify.c
+SRCS+= ipc_object.c ipc_port.c ipc_pset.c ipc_right.c ipc_space.c ipc_table.c ipc_thread.c
+SRCS+= mach_debug.c mach_msg.c mach_port.c
+# compat/mach/kern
+SRCS+= ipc_tt.c ipc_host.c task.c thread_pool.c
+.include <bsd.kmod.mk>
+CFLAGS+= -I${SYSDIR}/../include/apple -DCOMPAT_MACH
+DEBUG_FLAGS+= -g -O0


Property changes on: trunk/sys/modules/mach/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property


More information about the Midnightbsd-cvs mailing list