Home | History | Annotate | Line # | Download | only in amd64
linux_commons.c revision 1.1.2.1
      1  1.1.2.1  yamt /*	$NetBSD: linux_commons.c,v 1.1.2.1 2006/06/21 14:59:01 yamt Exp $ */
      2      1.1  manu 
      3      1.1  manu /*
      4      1.1  manu  * This file includes C files from the common
      5      1.1  manu  * area to decrese the number of files to compile
      6      1.1  manu  * in order to make building a kernel go faster.
      7      1.1  manu  *
      8      1.1  manu  * Option headers and headers which depend on
      9      1.1  manu  * certain options being set need to be included
     10      1.1  manu  * here.  This ensures that a header file sees
     11      1.1  manu  * the options it needs even if one of included
     12      1.1  manu  * C files doesn't use it.
     13      1.1  manu  */
     14      1.1  manu 
     15      1.1  manu #include <sys/cdefs.h>
     16  1.1.2.1  yamt __KERNEL_RCSID(1, "$NetBSD: linux_commons.c,v 1.1.2.1 2006/06/21 14:59:01 yamt Exp $");
     17      1.1  manu 
     18      1.1  manu #if defined(_KERNEL_OPT)
     19      1.1  manu #include "opt_sysv.h"
     20      1.1  manu #include "opt_ktrace.h"
     21      1.1  manu #include "opt_nfsserver.h"
     22      1.1  manu #include "fs_nfs.h"
     23      1.1  manu #include "fs_lfs.h"
     24      1.1  manu #endif
     25      1.1  manu 
     26      1.1  manu #include <sys/param.h>
     27      1.1  manu #include <sys/mount.h>
     28      1.1  manu #include <sys/signal.h>
     29      1.1  manu #include <sys/sa.h>
     30      1.1  manu #include <sys/syscallargs.h>
     31      1.1  manu 
     32  1.1.2.1  yamt #include <compat/linux/common/linux_signal.h>
     33  1.1.2.1  yamt #include <compat/linux/common/linux_types.h>
     34  1.1.2.1  yamt #include <compat/linux/common/linux_ipc.h>
     35  1.1.2.1  yamt #include <compat/linux/common/linux_sem.h>
     36  1.1.2.1  yamt 
     37  1.1.2.1  yamt #include <compat/linux/linux_syscallargs.h>
     38  1.1.2.1  yamt 
     39      1.1  manu #include "../../common/linux_pipe.c"
     40      1.1  manu #include "../../common/linux_file64.c"
     41      1.1  manu #include "../../common/linux_misc_notalpha.c"
     42      1.1  manu #include "../../common/linux_sig_notalpha.c"
     43      1.1  manu #include "../../common/linux_sigaction.c"
     44  1.1.2.1  yamt #include "../../common/linux_futex.c"
     45