Module Name: src Committed By: pooka Date: Sun Nov 4 14:40:47 UTC 2012
Modified Files: src/sys/rump/librump/rumpkern: threads.c Log Message: Add vdrain to the list of kernel threads. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 src/sys/rump/librump/rumpkern/threads.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/threads.c diff -u src/sys/rump/librump/rumpkern/threads.c:1.16 src/sys/rump/librump/rumpkern/threads.c:1.17 --- src/sys/rump/librump/rumpkern/threads.c:1.16 Sun Nov 4 14:40:18 2012 +++ src/sys/rump/librump/rumpkern/threads.c Sun Nov 4 14:40:47 2012 @@ -1,4 +1,4 @@ -/* $NetBSD: threads.c,v 1.16 2012/11/04 14:40:18 pooka Exp $ */ +/* $NetBSD: threads.c,v 1.17 2012/11/04 14:40:47 pooka Exp $ */ /* * Copyright (c) 2007-2009 Antti Kantee. All Rights Reserved. @@ -29,7 +29,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: threads.c,v 1.16 2012/11/04 14:40:18 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: threads.c,v 1.17 2012/11/04 14:40:47 pooka Exp $"); #include <sys/param.h> #include <sys/atomic.h> @@ -79,6 +79,7 @@ static struct { bool t_ncmp; } nothreads[] = { { "vrele", false }, + { "vdrain", false }, { "cachegc", false }, { "nfssilly", false }, { "unpgc", false },