From fa0f1ddde57cf39969e595ce9967c93421f758ac Mon Sep 17 00:00:00 2001 From: pgoyette Date: Wed, 11 Aug 2010 11:51:06 +0000 Subject: [PATCH] Keep condvar wmesg within 8 char limit --- sys/rump/librump/rumpkern/sysproxy_socket.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/rump/librump/rumpkern/sysproxy_socket.c b/sys/rump/librump/rumpkern/sysproxy_socket.c index 9430e509fc44..a78ae08d08c9 100644 --- a/sys/rump/librump/rumpkern/sysproxy_socket.c +++ b/sys/rump/librump/rumpkern/sysproxy_socket.c @@ -1,4 +1,4 @@ -/* $NetBSD: sysproxy_socket.c,v 1.6 2010/03/01 13:02:46 pooka Exp $ */ +/* $NetBSD: sysproxy_socket.c,v 1.7 2010/08/11 11:51:06 pgoyette Exp $ */ /* * Copyright (c) 2009 Antti Kantee. All Rights Reserved. @@ -28,7 +28,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: sysproxy_socket.c,v 1.6 2010/03/01 13:02:46 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: sysproxy_socket.c,v 1.7 2010/08/11 11:51:06 pgoyette Exp $"); #include #include @@ -270,7 +270,7 @@ wrkenqueue(void (*wfn)(void *), void *arg) printf("syscall proxy warning: over 30 workers\n"); mutex_exit(&wrkmtx); wrk = kmem_zalloc(sizeof(*wrk), KM_SLEEP); - cv_init(&wrk->wrkcv, "sproxywrk"); + cv_init(&wrk->wrkcv, "sproxywk"); retry: error = kthread_create(PRI_NONE, KTHREAD_MPSAFE, NULL, wrkthread, wrk, NULL, "spw_%d", nwrk);