From d9cd7b91a4c60c3dc4eda3b53c96b4fcac7e5351 Mon Sep 17 00:00:00 2001 From: Ami Bar Date: Tue, 15 Apr 2014 23:32:59 +0300 Subject: [PATCH] Added missing MaxStackSize initialization Thanks to igor_kourbatov who pointed this. --- SmartThreadPool/STPStartInfo.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/SmartThreadPool/STPStartInfo.cs b/SmartThreadPool/STPStartInfo.cs index 96fa094..0658e45 100644 --- a/SmartThreadPool/STPStartInfo.cs +++ b/SmartThreadPool/STPStartInfo.cs @@ -47,6 +47,7 @@ namespace Amib.Threading #if !(_SILVERLIGHT) && !(WINDOWS_PHONE) _apartmentState = stpStartInfo._apartmentState; #endif + _maxStackSize = stpStartInfo._maxStackSize; } ///