mirror of https://github.com/buggins/dlangui.git
temporary fix for app hanging on druntime shutdown when there were several threads:
This commit is contained in:
parent
7ed43feb7f
commit
54bb53d4e5
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue