blob: cf3026ae1a3d56e9c9953e8efa265390135a7411 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/* $NetBSD: linux_commons.c,v 1.18 2021/10/12 08:36:29 andvar Exp $ */
/*
* This file includes C files from the common
* area to decrease 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.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(1, "$NetBSD: linux_commons.c,v 1.18 2021/10/12 08:36:29 andvar Exp $");
#if defined(_KERNEL_OPT)
#include "opt_sysv.h"
#endif
#include <sys/param.h>
#include <sys/mount.h>
#include <sys/signal.h>
#include <sys/syscallargs.h>
#include "../../common/linux_pipe.c"
#include "../../common/linux_file64.c"
#include "../../common/linux_fcntl64.c"
#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"
#include "../../common/linux_uid16.c"
#include "../../common/linux_fadvise64.c"
#include "../../common/linux_fadvise64_64.c"
|