Home | History | Annotate | Line # | Download | only in amd64
linux_commons.c revision 1.4.6.1
      1 /*	$NetBSD: linux_commons.c,v 1.4.6.1 2006/04/22 11:38:13 simonb 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.4.6.1 2006/04/22 11:38:13 simonb Exp $");
     17 
     18 #if defined(_KERNEL_OPT)
     19 #include "opt_sysv.h"
     20 #include "opt_ktrace.h"
     21 #include "opt_nfsserver.h"
     22 #include "fs_nfs.h"
     23 #include "fs_lfs.h"
     24 #endif
     25 
     26 #include <sys/param.h>
     27 #include <sys/mount.h>
     28 #include <sys/signal.h>
     29 #include <sys/sa.h>
     30 #include <sys/syscallargs.h>
     31 
     32 #include <compat/linux/common/linux_signal.h>
     33 #include <compat/linux/common/linux_types.h>
     34 #include <compat/linux/common/linux_ipc.h>
     35 #include <compat/linux/common/linux_sem.h>
     36 
     37 #include <compat/linux/linux_syscallargs.h>
     38 
     39 #include "../../common/linux_pipe.c"
     40 #include "../../common/linux_file64.c"
     41 #include "../../common/linux_misc_notalpha.c"
     42 #include "../../common/linux_sig_notalpha.c"
     43 #include "../../common/linux_sigaction.c"
     44 #include "../../common/linux_futex.c"
     45