git: faba46892748 - stable/15 - kern/sys_process.c: clean up includes
Konstantin Belousov <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.cvs.src |
|---|---|
| Message-ID | <6a81249d.446e3.155fe1a1__12433.1099841342$1786848710$gmane$org@gitrepo.freebsd.org> |
The branch stable/15 has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=faba4689274867d1427615c07c48277aae3a1f4c commit faba4689274867d1427615c07c48277aae3a1f4c Author: Konstantin Belousov <[email protected]> AuthorDate: 2026-05-26 01:24:54 +0000 Commit: Konstantin Belousov <[email protected]> CommitDate: 2026-08-16 02:41:28 +0000 kern/sys_process.c: clean up includes (cherry picked from commit f87f97d4c9b30dde1cdb3d72dfd699aed9c307e1) --- sys/kern/sys_process.c | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/sys/kern/sys_process.c b/sys/kern/sys_process.c index a365f833b2af..ccbc0b18ce70 100644 --- a/sys/kern/sys_process.c +++ b/sys/kern/sys_process.c @@ -31,29 +31,28 @@ * SUCH DAMAGE. */ -#include <sys/param.h> #include <sys/systm.h> +#include <sys/caprights.h> +#include <sys/filedesc.h> #include <sys/imgact.h> #include <sys/ktr.h> #include <sys/limits.h> #include <sys/lock.h> +#include <sys/malloc.h> #include <sys/mman.h> #include <sys/mutex.h> +#include <sys/priv.h> +#include <sys/proc.h> +#include <sys/ptrace.h> #include <sys/reg.h> +#include <sys/rwlock.h> +#include <sys/signalvar.h> #include <sys/sleepqueue.h> +#include <sys/sx.h> #include <sys/syscallsubr.h> #include <sys/sysent.h> #include <sys/sysproto.h> -#include <sys/priv.h> -#include <sys/proc.h> #include <sys/vnode.h> -#include <sys/ptrace.h> -#include <sys/rwlock.h> -#include <sys/sx.h> -#include <sys/malloc.h> -#include <sys/signalvar.h> -#include <sys/caprights.h> -#include <sys/filedesc.h> #include <security/audit/audit.h>