2008-02-02 22:37:52 +03:00
|
|
|
/* $NetBSD: linux_commons.c,v 1.12 2008/02/02 19:37:52 dsl Exp $ */
|
1999-01-03 08:29:31 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This file includes C files from the common
|
|
|
|
* area to decrese the number of files to compile
|
|
|
|
* in order to make building a kernel go faster.
|
|
|
|
*
|
|
|
|
* Option headers and headers which depend on
|
|
|
|
* certain options being set need to be included
|
|
|
|
* here. This ensures that a header file sees
|
|
|
|
* the options it needs even if one of included
|
|
|
|
* C files doesn't use it.
|
|
|
|
*/
|
|
|
|
|
2001-11-13 05:07:52 +03:00
|
|
|
#include <sys/cdefs.h>
|
2008-02-02 22:37:52 +03:00
|
|
|
__KERNEL_RCSID(1, "$NetBSD: linux_commons.c,v 1.12 2008/02/02 19:37:52 dsl Exp $");
|
2001-11-13 05:07:52 +03:00
|
|
|
|
2001-05-30 15:37:21 +04:00
|
|
|
#if defined(_KERNEL_OPT)
|
1999-01-03 08:29:31 +03:00
|
|
|
#include "opt_sysv.h"
|
|
|
|
#include "opt_nfsserver.h"
|
|
|
|
#include "fs_nfs.h"
|
|
|
|
#include "fs_lfs.h"
|
2000-12-17 19:15:54 +03:00
|
|
|
#endif
|
1999-01-03 08:29:31 +03:00
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/signal.h>
|
|
|
|
#include <sys/syscallargs.h>
|
|
|
|
|
|
|
|
#include "../../common/linux_pipe.c"
|
2007-06-13 18:31:07 +04:00
|
|
|
#include "../../common/linux_futex.c"
|
2000-12-12 22:01:59 +03:00
|
|
|
#include "../../common/linux_file64.c"
|
2008-02-02 22:37:52 +03:00
|
|
|
#include "../../common/linux_fcntl64.c"
|
1999-01-03 08:29:31 +03:00
|
|
|
#include "../../common/linux_ipccall.c"
|
|
|
|
#include "../../common/linux_misc_notalpha.c"
|
|
|
|
#include "../../common/linux_sig_notalpha.c"
|
|
|
|
#include "../../common/linux_sigaction.c"
|
|
|
|
#include "../../common/linux_socketcall.c"
|
|
|
|
#include "../../common/linux_llseek.c"
|
|
|
|
#include "../../common/linux_break.c"
|
|
|
|
#include "../../common/linux_oldmmap.c"
|
|
|
|
#include "../../common/linux_oldselect.c"
|
|
|
|
#include "../../common/linux_olduname.c"
|
|
|
|
#include "../../common/linux_oldolduname.c"
|
2008-01-16 01:38:34 +03:00
|
|
|
#include "../../common/linux_uid16.c"
|