Home | History | Annotate | Line # | Download | only in i386
linux_commons.c revision 1.14.2.1
      1  1.14.2.1     rmind /*	$NetBSD: linux_commons.c,v 1.14.2.1 2011/05/31 03:04:28 rmind Exp $	*/
      2       1.1       erh 
      3       1.1       erh /*
      4       1.1       erh  * This file includes C files from the common
      5       1.1       erh  * area to decrese the number of files to compile
      6       1.1       erh  * in order to make building a kernel go faster.
      7       1.1       erh  *
      8       1.1       erh  * Option headers and headers which depend on
      9       1.1       erh  * certain options being set need to be included
     10       1.1       erh  * here.  This ensures that a header file sees
     11       1.1       erh  * the options it needs even if one of included
     12       1.1       erh  * C files doesn't use it.
     13       1.1       erh  */
     14       1.5     lukem 
     15       1.5     lukem #include <sys/cdefs.h>
     16  1.14.2.1     rmind __KERNEL_RCSID(1, "$NetBSD: linux_commons.c,v 1.14.2.1 2011/05/31 03:04:28 rmind Exp $");
     17       1.1       erh 
     18       1.4       mrg #if defined(_KERNEL_OPT)
     19       1.1       erh #include "opt_sysv.h"
     20       1.3  jdolecek #endif
     21       1.1       erh 
     22       1.1       erh #include <sys/param.h>
     23       1.1       erh #include <sys/mount.h>
     24       1.1       erh #include <sys/signal.h>
     25       1.1       erh #include <sys/syscallargs.h>
     26       1.1       erh 
     27       1.1       erh #include "../../common/linux_pipe.c"
     28       1.9  christos #include "../../common/linux_futex.c"
     29       1.2  jdolecek #include "../../common/linux_file64.c"
     30      1.12       dsl #include "../../common/linux_fcntl64.c"
     31       1.1       erh #include "../../common/linux_ipccall.c"
     32       1.1       erh #include "../../common/linux_misc_notalpha.c"
     33       1.1       erh #include "../../common/linux_sig_notalpha.c"
     34       1.1       erh #include "../../common/linux_sigaction.c"
     35       1.1       erh #include "../../common/linux_socketcall.c"
     36       1.1       erh #include "../../common/linux_llseek.c"
     37       1.1       erh #include "../../common/linux_break.c"
     38       1.1       erh #include "../../common/linux_oldmmap.c"
     39       1.1       erh #include "../../common/linux_oldselect.c"
     40       1.1       erh #include "../../common/linux_olduname.c"
     41       1.1       erh #include "../../common/linux_oldolduname.c"
     42      1.11     njoly #include "../../common/linux_uid16.c"
     43  1.14.2.1     rmind #include "../../compat/linux/common/linux_fadvise64.c"
     44  1.14.2.1     rmind #include "../../compat/linux/common/linux_fadvise64_64.c"
     45