|
From: <sv...@va...> - 2010-02-17 16:20:13
|
Author: sewardj
Date: 2010-02-17 16:20:04 +0000 (Wed, 17 Feb 2010)
New Revision: 11049
Log:
Increase number of supported threads to 500. Fixes #227328.
Modified:
trunk/include/pub_tool_threadstate.h
Modified: trunk/include/pub_tool_threadstate.h
===================================================================
--- trunk/include/pub_tool_threadstate.h 2010-02-16 15:05:55 UTC (rev 11048)
+++ trunk/include/pub_tool_threadstate.h 2010-02-17 16:20:04 UTC (rev 11049)
@@ -36,7 +36,7 @@
scheduler algorithms is surely O(N) in the number of threads, since
that's simple, at least. And (in practice) we hope that most
programs do not need many threads. */
-#define VG_N_THREADS 300
+#define VG_N_THREADS 500
/* Special magic value for an invalid ThreadId. It corresponds to
LinuxThreads using zero as the initial value for
|