Module Name: src Committed By: riastradh Date: Sun Oct 15 10:29:34 UTC 2023
Modified Files: src/sys/kern: sys_select.c Log Message: sys_select.c: Sort includes. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r1.65 -r1.66 src/sys/kern/sys_select.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/kern/sys_select.c diff -u src/sys/kern/sys_select.c:1.65 src/sys/kern/sys_select.c:1.66 --- src/sys/kern/sys_select.c:1.65 Sun Oct 15 10:27:11 2023 +++ src/sys/kern/sys_select.c Sun Oct 15 10:29:34 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: sys_select.c,v 1.65 2023/10/15 10:27:11 riastradh Exp $ */ +/* $NetBSD: sys_select.c,v 1.66 2023/10/15 10:29:34 riastradh Exp $ */ /*- * Copyright (c) 2007, 2008, 2009, 2010, 2019, 2020, 2023 @@ -85,28 +85,29 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: sys_select.c,v 1.65 2023/10/15 10:27:11 riastradh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: sys_select.c,v 1.66 2023/10/15 10:29:34 riastradh Exp $"); #include <sys/param.h> -#include <sys/systm.h> -#include <sys/filedesc.h> + +#include <sys/atomic.h> +#include <sys/bitops.h> +#include <sys/cpu.h> #include <sys/file.h> -#include <sys/proc.h> -#include <sys/socketvar.h> -#include <sys/signalvar.h> -#include <sys/uio.h> +#include <sys/filedesc.h> #include <sys/kernel.h> #include <sys/lwp.h> -#include <sys/poll.h> #include <sys/mount.h> -#include <sys/syscallargs.h> -#include <sys/cpu.h> -#include <sys/atomic.h> -#include <sys/socketvar.h> +#include <sys/poll.h> +#include <sys/proc.h> +#include <sys/signalvar.h> #include <sys/sleepq.h> -#include <sys/sysctl.h> -#include <sys/bitops.h> +#include <sys/socketvar.h> +#include <sys/socketvar.h> #include <sys/syncobj.h> +#include <sys/syscallargs.h> +#include <sys/sysctl.h> +#include <sys/systm.h> +#include <sys/uio.h> /* Flags for lwp::l_selflag. */ #define SEL_RESET 0 /* awoken, interrupted, or not yet polling */