temporary fix for app hanging on druntime shutdown when there were several threads:

This commit is contained in:
Vadim Lopatin 2015-02-17 15:49:01 +03:00
parent 7ed43feb7f
commit 54bb53d4e5
1 changed files with 2 additions and 1 deletions

View File

@ -863,7 +863,8 @@ int DLANGUIWinMain(void* hInstance, void* hPrevInstance,
{
Runtime.initialize();
result = myWinMain(hInstance, hPrevInstance, lpCmdLine, nCmdShow);
Runtime.terminate();
// TODO: fix hanging on multithreading app
//Runtime.terminate();
}
catch (Throwable e) // catch any uncaught exceptions
{