Module Name:    src
Committed By:   matt
Date:           Thu Aug 30 02:24:48 UTC 2012

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

Log Message:
KASSERT -> KASSERTMSG


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/kern/subr_pcu.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/subr_pcu.c
diff -u src/sys/kern/subr_pcu.c:1.11 src/sys/kern/subr_pcu.c:1.12
--- src/sys/kern/subr_pcu.c:1.11	Wed Apr 18 13:43:13 2012
+++ src/sys/kern/subr_pcu.c	Thu Aug 30 02:24:48 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: subr_pcu.c,v 1.11 2012/04/18 13:43:13 yamt Exp $	*/
+/*	$NetBSD: subr_pcu.c,v 1.12 2012/08/30 02:24:48 matt Exp $	*/
 
 /*-
  * Copyright (c) 2011 The NetBSD Foundation, Inc.
@@ -57,7 +57,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_pcu.c,v 1.11 2012/04/18 13:43:13 yamt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_pcu.c,v 1.12 2012/08/30 02:24:48 matt Exp $");
 
 #include <sys/param.h>
 #include <sys/cpu.h>
@@ -89,7 +89,7 @@ pcu_switchpoint(lwp_t *l)
 	u_int id;
 	/* int s; */
 
-	KASSERT(l == curlwp);
+	KASSERTMSG(l == curlwp, "l %p != curlwp %p", l, curlwp);
 
 	if (__predict_true(pcu_inuse == 0)) {
 		/* PCUs are not in use. */

Reply via email to