Module Name:    src
Committed By:   riastradh
Date:           Sun Oct 15 10:30:20 UTC 2023

Modified Files:
        src/sys/kern: kern_turnstile.c

Log Message:
kern_turnstile.c: Use <sys/lwp.h> explicitly for struct lwp members.


To generate a diff of this commit:
cvs rdiff -u -r1.54 -r1.55 src/sys/kern/kern_turnstile.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_turnstile.c
diff -u src/sys/kern/kern_turnstile.c:1.54 src/sys/kern/kern_turnstile.c:1.55
--- src/sys/kern/kern_turnstile.c:1.54	Sun Oct 15 10:27:11 2023
+++ src/sys/kern/kern_turnstile.c	Sun Oct 15 10:30:20 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: kern_turnstile.c,v 1.54 2023/10/15 10:27:11 riastradh Exp $	*/
+/*	$NetBSD: kern_turnstile.c,v 1.55 2023/10/15 10:30:20 riastradh Exp $	*/
 
 /*-
  * Copyright (c) 2002, 2006, 2007, 2009, 2019, 2020, 2023
@@ -61,10 +61,12 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_turnstile.c,v 1.54 2023/10/15 10:27:11 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_turnstile.c,v 1.55 2023/10/15 10:30:20 riastradh Exp $");
 
 #include <sys/param.h>
+
 #include <sys/lockdebug.h>
+#include <sys/lwp.h>
 #include <sys/proc.h>
 #include <sys/sleepq.h>
 #include <sys/sleeptab.h>

Reply via email to