Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 Feb 2011 13:25:42 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r218971 - head/sys/kern
Message-ID:  <201102231325.p1NDPgXp062114@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhb
Date: Wed Feb 23 13:25:42 2011
New Revision: 218971
URL: http://svn.freebsd.org/changeset/base/218971

Log:
  Revert previous change, the existing check was correct.
  
  Pointy hat to:	jhb

Modified:
  head/sys/kern/kern_thr.c

Modified: head/sys/kern/kern_thr.c
==============================================================================
--- head/sys/kern/kern_thr.c	Wed Feb 23 13:23:28 2011	(r218970)
+++ head/sys/kern/kern_thr.c	Wed Feb 23 13:25:42 2011	(r218971)
@@ -153,7 +153,7 @@ create_thread(struct thread *td, mcontex
 	p = td->td_proc;
 
 	/* Have race condition but it is cheap. */
-	if (p->p_numthreads > max_threads_per_proc) {
+	if (p->p_numthreads >= max_threads_per_proc) {
 		++max_threads_hits;
 		return (EPROCLIM);
 	}



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