xref: /netbsd-src/sys/compat/linux/arch/i386/linux_commons.c (revision 8b0f9554ff8762542c4defc4f70e1eb76fb508fa)
1 /*	$NetBSD: linux_commons.c,v 1.10 2007/08/15 12:07:29 ad Exp $	*/
2 
3 /*
4  * This file includes C files from the common
5  * area to decrese the number of files to compile
6  * in order to make building a kernel go faster.
7  *
8  * Option headers and headers which depend on
9  * certain options being set need to be included
10  * here.  This ensures that a header file sees
11  * the options it needs even if one of included
12  * C files doesn't use it.
13  */
14 
15 #include <sys/cdefs.h>
16 __KERNEL_RCSID(1, "$NetBSD: linux_commons.c,v 1.10 2007/08/15 12:07:29 ad Exp $");
17 
18 #if defined(_KERNEL_OPT)
19 #include "opt_sysv.h"
20 #include "opt_nfsserver.h"
21 #include "fs_nfs.h"
22 #include "fs_lfs.h"
23 #endif
24 
25 #include <sys/param.h>
26 #include <sys/mount.h>
27 #include <sys/signal.h>
28 #include <sys/syscallargs.h>
29 
30 #include "../../common/linux_pipe.c"
31 #include "../../common/linux_futex.c"
32 #include "../../common/linux_file64.c"
33 #include "../../common/linux_ipccall.c"
34 #include "../../common/linux_misc_notalpha.c"
35 #include "../../common/linux_sig_notalpha.c"
36 #include "../../common/linux_sigaction.c"
37 #include "../../common/linux_socketcall.c"
38 #include "../../common/linux_llseek.c"
39 #include "../../common/linux_break.c"
40 #include "../../common/linux_oldmmap.c"
41 #include "../../common/linux_oldselect.c"
42 #include "../../common/linux_olduname.c"
43 #include "../../common/linux_oldolduname.c"
44