Module Name: src
Committed By: riastradh
Date: Sun Oct 15 10:28:00 UTC 2023
Modified Files:
src/sys/kern: kern_condvar.c
Log Message:
kern_condvar.c: Sort includes. No functional change intended.
To generate a diff of this commit:
cvs rdiff -u -r1.61 -r1.62 src/sys/kern/kern_condvar.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/kern_condvar.c
diff -u src/sys/kern/kern_condvar.c:1.61 src/sys/kern/kern_condvar.c:1.62
--- src/sys/kern/kern_condvar.c:1.61 Sun Oct 15 10:27:11 2023
+++ src/sys/kern/kern_condvar.c Sun Oct 15 10:28:00 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: kern_condvar.c,v 1.61 2023/10/15 10:27:11 riastradh Exp $ */
+/* $NetBSD: kern_condvar.c,v 1.62 2023/10/15 10:28:00 riastradh Exp $ */
/*-
* Copyright (c) 2006, 2007, 2008, 2019, 2020, 2023
@@ -35,17 +35,18 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_condvar.c,v 1.61 2023/10/15 10:27:11 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_condvar.c,v 1.62 2023/10/15 10:28:00 riastradh Exp $");
#include <sys/param.h>
-#include <sys/systm.h>
-#include <sys/lwp.h>
+
#include <sys/condvar.h>
-#include <sys/sleepq.h>
-#include <sys/lockdebug.h>
#include <sys/cpu.h>
#include <sys/kernel.h>
+#include <sys/lockdebug.h>
+#include <sys/lwp.h>
+#include <sys/sleepq.h>
#include <sys/syncobj.h>
+#include <sys/systm.h>
/*
* Accessors for the private contents of the kcondvar_t data type.