From owner-svn-src-head@FreeBSD.ORG Fri Feb 13 18:51:40 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D74B1065705; Fri, 13 Feb 2009 18:51:40 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0B3678FC19; Fri, 13 Feb 2009 18:51:40 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n1DIpdV0096419; Fri, 13 Feb 2009 18:51:39 GMT (envelope-from thompsa@svn.freebsd.org) Received: (from thompsa@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n1DIpdC9096418; Fri, 13 Feb 2009 18:51:39 GMT (envelope-from thompsa@svn.freebsd.org) Message-Id: <200902131851.n1DIpdC9096418@svn.freebsd.org> From: Andrew Thompson Date: Fri, 13 Feb 2009 18:51:39 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r188592 - head/sys/kern X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Feb 2009 18:51:41 -0000 Author: thompsa Date: Fri Feb 13 18:51:39 2009 New Revision: 188592 URL: http://svn.freebsd.org/changeset/base/188592 Log: Remove semicolon left in the last commit Spotted by: csjp Modified: head/sys/kern/subr_taskqueue.c Modified: head/sys/kern/subr_taskqueue.c ============================================================================== --- head/sys/kern/subr_taskqueue.c Fri Feb 13 18:45:36 2009 (r188591) +++ head/sys/kern/subr_taskqueue.c Fri Feb 13 18:51:39 2009 (r188592) @@ -402,7 +402,7 @@ taskqueue_thread_loop(void *arg) while ((tq->tq_flags & TQ_FLAGS_ACTIVE) != 0) { taskqueue_run(tq); TQ_SLEEP(tq, tq, &tq->tq_mutex, 0, "-", 0); - }; + } /* rendezvous with thread that asked us to terminate */ tq->tq_tcount--;