Module Name: src
Committed By: riastradh
Date: Sun Oct 15 10:30:00 UTC 2023
Modified Files:
src/sys/sys: sleepq.h
Log Message:
sys/sleepq.h: Sort includes. No functional change intended.
To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.42 src/sys/sys/sleepq.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/sys/sleepq.h
diff -u src/sys/sys/sleepq.h:1.41 src/sys/sys/sleepq.h:1.42
--- src/sys/sys/sleepq.h:1.41 Sun Oct 15 10:27:11 2023
+++ src/sys/sys/sleepq.h Sun Oct 15 10:30:00 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: sleepq.h,v 1.41 2023/10/15 10:27:11 riastradh Exp $ */
+/* $NetBSD: sleepq.h,v 1.42 2023/10/15 10:30:00 riastradh Exp $ */
/*-
* Copyright (c) 2002, 2006, 2007, 2008, 2009, 2019, 2020, 2023
@@ -33,12 +33,13 @@
#ifndef _SYS_SLEEPQ_H_
#define _SYS_SLEEPQ_H_
+#include <sys/param.h>
+
#include <sys/lwp.h>
#include <sys/mutex.h>
#include <sys/pool.h>
#include <sys/queue.h>
#include <sys/sched.h>
-#include <sys/param.h>
#include <sys/wchan.h>
struct syncobj;