Module Name: src
Committed By: pgoyette
Date: Wed Aug 11 12:04:49 UTC 2010
Modified Files:
src/sys/kern: kern_module.c
Log Message:
Keep condvar wmesg within 8 char limit
To generate a diff of this commit:
cvs rdiff -u -r1.70 -r1.71 src/sys/kern/kern_module.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_module.c
diff -u src/sys/kern/kern_module.c:1.70 src/sys/kern/kern_module.c:1.71
--- src/sys/kern/kern_module.c:1.70 Sat Jun 26 07:23:57 2010
+++ src/sys/kern/kern_module.c Wed Aug 11 12:04:49 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: kern_module.c,v 1.70 2010/06/26 07:23:57 pgoyette Exp $ */
+/* $NetBSD: kern_module.c,v 1.71 2010/08/11 12:04:49 pgoyette Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_module.c,v 1.70 2010/06/26 07:23:57 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_module.c,v 1.71 2010/08/11 12:04:49 pgoyette Exp $");
#define _MODULE_INTERNAL
@@ -333,7 +333,7 @@
module_map = kernel_map;
}
mutex_init(&module_lock, MUTEX_DEFAULT, IPL_NONE);
- cv_init(&module_thread_cv, "modunload");
+ cv_init(&module_thread_cv, "mod_unld");
mutex_init(&module_thread_lock, MUTEX_DEFAULT, IPL_NONE);
#ifdef MODULAR /* XXX */