Module Name: src
Committed By: thorpej
Date: Fri Aug 6 18:23:58 UTC 2021
Modified Files:
src/sys/kern [thorpej-futex2]: sys_futex.c
Log Message:
Correct a comment.
To generate a diff of this commit:
cvs rdiff -u -r1.12.4.2 -r1.12.4.3 src/sys/kern/sys_futex.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_futex.c
diff -u src/sys/kern/sys_futex.c:1.12.4.2 src/sys/kern/sys_futex.c:1.12.4.3
--- src/sys/kern/sys_futex.c:1.12.4.2 Thu Aug 5 23:23:50 2021
+++ src/sys/kern/sys_futex.c Fri Aug 6 18:23:57 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: sys_futex.c,v 1.12.4.2 2021/08/05 23:23:50 thorpej Exp $ */
+/* $NetBSD: sys_futex.c,v 1.12.4.3 2021/08/06 18:23:57 thorpej Exp $ */
/*-
* Copyright (c) 2018, 2019, 2020 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sys_futex.c,v 1.12.4.2 2021/08/05 23:23:50 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sys_futex.c,v 1.12.4.3 2021/08/06 18:23:57 thorpej Exp $");
/*
* Futexes
@@ -1250,7 +1250,7 @@ futex_op_lock(struct futex *f)
/*
* futex_op_unlock(f)
*
- * Release the queue lock of f.
+ * Release the op lock of f.
*/
static void
futex_op_unlock(struct futex *f)