Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 3 Sep 2014 08:40:16 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r271008 - head/sys/kern
Message-ID:  <201409030840.s838eGgD095078@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Wed Sep  3 08:40:16 2014
New Revision: 271008
URL: http://svnweb.freebsd.org/changeset/base/271008

Log:
  Style.
  
  Sponsored by:	The FreeBSD Foundation
  MFC after:	1 week

Modified:
  head/sys/kern/kern_thread.c

Modified: head/sys/kern/kern_thread.c
==============================================================================
--- head/sys/kern/kern_thread.c	Wed Sep  3 08:35:42 2014	(r271007)
+++ head/sys/kern/kern_thread.c	Wed Sep  3 08:40:16 2014	(r271008)
@@ -507,8 +507,8 @@ thread_wait(struct proc *p)
 	struct thread *td;
 
 	mtx_assert(&Giant, MA_NOTOWNED);
-	KASSERT((p->p_numthreads == 1), ("multiple threads in thread_wait()"));
-	KASSERT((p->p_exitthreads == 0), ("p_exitthreads leaking"));
+	KASSERT(p->p_numthreads == 1, ("multiple threads in thread_wait()"));
+	KASSERT(p->p_exitthreads == 0, ("p_exitthreads leaking"));
 	td = FIRST_THREAD_IN_PROC(p);
 	/* Lock the last thread so we spin until it exits cpu_throw(). */
 	thread_lock(td);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201409030840.s838eGgD095078>