Module Name: src
Committed By: pgoyette
Date: Wed Aug 11 11:36:03 UTC 2010
Modified Files:
src/sys/dev/tprof: tprof.c
Log Message:
Keep condvar wmesg within 8-char limit
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/dev/tprof/tprof.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/dev/tprof/tprof.c
diff -u src/sys/dev/tprof/tprof.c:1.6 src/sys/dev/tprof/tprof.c:1.7
--- src/sys/dev/tprof/tprof.c:1.6 Fri Mar 13 11:06:26 2009
+++ src/sys/dev/tprof/tprof.c Wed Aug 11 11:36:02 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: tprof.c,v 1.6 2009/03/13 11:06:26 yamt Exp $ */
+/* $NetBSD: tprof.c,v 1.7 2010/08/11 11:36:02 pgoyette Exp $ */
/*-
* Copyright (c)2008,2009 YAMAMOTO Takashi,
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tprof.c,v 1.6 2009/03/13 11:06:26 yamt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tprof.c,v 1.7 2010/08/11 11:36:02 pgoyette Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -667,7 +667,7 @@
mutex_init(&tprof_reader_lock, MUTEX_DEFAULT, IPL_NONE);
mutex_init(&tprof_startstop_lock, MUTEX_DEFAULT, IPL_NONE);
cv_init(&tprof_cv, "tprof");
- cv_init(&tprof_reader_cv, "tprofread");
+ cv_init(&tprof_reader_cv, "tprof_rd");
STAILQ_INIT(&tprof_list);
}