Module Name: src Committed By: pgoyette Date: Wed Aug 11 11:51:06 UTC 2010
Modified Files: src/sys/rump/librump/rumpkern: sysproxy_socket.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/rump/librump/rumpkern/sysproxy_socket.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/sysproxy_socket.c diff -u src/sys/rump/librump/rumpkern/sysproxy_socket.c:1.6 src/sys/rump/librump/rumpkern/sysproxy_socket.c:1.7 --- src/sys/rump/librump/rumpkern/sysproxy_socket.c:1.6 Mon Mar 1 13:02:46 2010 +++ src/sys/rump/librump/rumpkern/sysproxy_socket.c Wed Aug 11 11:51:06 2010 @@ -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 <sys/cdefs.h> -__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 <sys/param.h> #include <sys/kernel.h> @@ -270,7 +270,7 @@ 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);