Module Name: src
Committed By: pooka
Date: Thu Jan 6 13:36:49 UTC 2011
Modified Files:
src/sys/rump/librump/rumpkern: locks.c
Log Message:
antipasto
To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.46 src/sys/rump/librump/rumpkern/locks.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/rump/librump/rumpkern/locks.c
diff -u src/sys/rump/librump/rumpkern/locks.c:1.45 src/sys/rump/librump/rumpkern/locks.c:1.46
--- src/sys/rump/librump/rumpkern/locks.c:1.45 Thu Jan 6 11:22:55 2011
+++ src/sys/rump/librump/rumpkern/locks.c Thu Jan 6 13:36:48 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: locks.c,v 1.45 2011/01/06 11:22:55 pooka Exp $ */
+/* $NetBSD: locks.c,v 1.46 2011/01/06 13:36:48 pooka Exp $ */
/*
* Copyright (c) 2007, 2008 Antti Kantee. All Rights Reserved.
@@ -29,7 +29,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: locks.c,v 1.45 2011/01/06 11:22:55 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: locks.c,v 1.46 2011/01/06 13:36:48 pooka Exp $");
#include <sys/param.h>
#include <sys/kmem.h>
@@ -53,7 +53,7 @@
NULL
};
static lockops_t rw_lockops = {
- "mutex",
+ "rwlock",
LOCKOPS_SLEEP,
NULL
};