Module Name:    src
Committed By:   riastradh
Date:           Mon Sep 25 18:30:44 UTC 2023

Modified Files:
        src/sys/sys: lwp.h

Log Message:
sys/lwp.h: Oops -- l_syncobj needs const now.


To generate a diff of this commit:
cvs rdiff -u -r1.223 -r1.224 src/sys/sys/lwp.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/lwp.h
diff -u src/sys/sys/lwp.h:1.223 src/sys/sys/lwp.h:1.224
--- src/sys/sys/lwp.h:1.223	Mon Sep 25 17:09:27 2023
+++ src/sys/sys/lwp.h	Mon Sep 25 18:30:44 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: lwp.h,v 1.223 2023/09/25 17:09:27 riastradh Exp $	*/
+/*	$NetBSD: lwp.h,v 1.224 2023/09/25 18:30:44 riastradh Exp $	*/
 
 /*
  * Copyright (c) 2001, 2006, 2007, 2008, 2009, 2010, 2019, 2020, 2023
@@ -130,7 +130,7 @@ struct lwp {
 	kcpuset_t	*l_affinity;	/* l: CPU set for affinity */
 
 	/* Synchronisation. */
-	struct syncobj	*l_syncobj;	/* l: sync object operations set */
+	const struct syncobj *l_syncobj;/* l: sync object operations set */
 	LIST_ENTRY(lwp) l_sleepchain;	/* l: sleep queue */
 	wchan_t		l_wchan;	/* l: sleep address */
 	const char	*l_wmesg;	/* l: reason for sleep */

Reply via email to