linux_sysvec.c (ce20c00e858f209f42d404eca597553e461e0892) | linux_sysvec.c (2456a45929328ce73a40ef6577600b0f1e2cced6) |
---|---|
1/*- 2 * Copyright (c) 2004 Tim J. Robbins 3 * Copyright (c) 2003 Peter Wemm 4 * Copyright (c) 2002 Doug Rabson 5 * Copyright (c) 1998-1999 Andrew Gallatin 6 * Copyright (c) 1994-1996 Søren Schmidt 7 * All rights reserved. 8 * Copyright (c) 2013, 2021 Dmitry Chagin <dchagin@FreeBSD.org> --- 23 unchanged lines hidden (view full) --- 32 */ 33 34#include <sys/cdefs.h> 35__FBSDID("$FreeBSD$"); 36 37#define __ELF_WORD_SIZE 64 38 39#include <sys/param.h> | 1/*- 2 * Copyright (c) 2004 Tim J. Robbins 3 * Copyright (c) 2003 Peter Wemm 4 * Copyright (c) 2002 Doug Rabson 5 * Copyright (c) 1998-1999 Andrew Gallatin 6 * Copyright (c) 1994-1996 Søren Schmidt 7 * All rights reserved. 8 * Copyright (c) 2013, 2021 Dmitry Chagin <dchagin@FreeBSD.org> --- 23 unchanged lines hidden (view full) --- 32 */ 33 34#include <sys/cdefs.h> 35__FBSDID("$FreeBSD$"); 36 37#define __ELF_WORD_SIZE 64 38 39#include <sys/param.h> |
40#include <sys/systm.h> | |
41#include <sys/exec.h> | 40#include <sys/exec.h> |
42#include <sys/fcntl.h> | |
43#include <sys/imgact.h> 44#include <sys/imgact_elf.h> 45#include <sys/kernel.h> 46#include <sys/ktr.h> 47#include <sys/lock.h> 48#include <sys/malloc.h> 49#include <sys/module.h> 50#include <sys/mutex.h> 51#include <sys/proc.h> | 41#include <sys/imgact.h> 42#include <sys/imgact_elf.h> 43#include <sys/kernel.h> 44#include <sys/ktr.h> 45#include <sys/lock.h> 46#include <sys/malloc.h> 47#include <sys/module.h> 48#include <sys/mutex.h> 49#include <sys/proc.h> |
52#include <sys/resourcevar.h> | |
53#include <sys/stddef.h> | 50#include <sys/stddef.h> |
54#include <sys/signalvar.h> | |
55#include <sys/syscallsubr.h> 56#include <sys/sysctl.h> 57#include <sys/sysent.h> | 51#include <sys/syscallsubr.h> 52#include <sys/sysctl.h> 53#include <sys/sysent.h> |
58#include <sys/sysproto.h> 59#include <sys/vnode.h> 60#include <sys/eventhandler.h> | |
61 | 54 |
62#include <vm/vm.h> | |
63#include <vm/pmap.h> | 55#include <vm/pmap.h> |
64#include <vm/vm_extern.h> | 56#include <vm/vm.h> |
65#include <vm/vm_map.h> | 57#include <vm/vm_map.h> |
66#include <vm/vm_object.h> | |
67#include <vm/vm_page.h> | 58#include <vm/vm_page.h> |
68#include <vm/vm_param.h> | |
69 70#include <machine/cpu.h> 71#include <machine/md_var.h> 72#include <machine/pcb.h> 73#include <machine/specialreg.h> 74#include <machine/trap.h> 75 76#include <x86/linux/linux_x86.h> --- 829 unchanged lines hidden --- | 59 60#include <machine/cpu.h> 61#include <machine/md_var.h> 62#include <machine/pcb.h> 63#include <machine/specialreg.h> 64#include <machine/trap.h> 65 66#include <x86/linux/linux_x86.h> --- 829 unchanged lines hidden --- |