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